Aggiornare 'mybot.php'
This commit is contained in:
parent
d9a617374e
commit
37c887e05d
22
mybot.php
22
mybot.php
|
@ -43,7 +43,7 @@ if ($text == '/start')
|
||||||
$content = array(
|
$content = array(
|
||||||
'chat_id' => $chat_id,
|
'chat_id' => $chat_id,
|
||||||
'text' => "
|
'text' => "
|
||||||
<b>Ciao,</b>\npremi il tasto qui sotto per provare questo bot all'interno di qualunque chat!\nScrivi /istruzioni invece per capire meglio come funziona questo bot.\n\n📣 <b>Canale</b>: @LeAlternative\n💬 <b>Gruppo</b>: @LeAlternativeGruppoufficiale\n🤖 Codice sorgente di questo bot: <a href=\"https://gitea.it/LeAlternative/LeAlternativeBot-Telegram\">Gitea.it</a>
|
<b>Ciao,</b>\npremi il tasto qui sotto per provare questo bot all'interno di qualunque chat!\nScrivi /istruzioni invece per capire meglio come funziona questo bot e scoprirne tutte le funzionalità!\n\n\📣 <b>Canale</b>: @LeAlternative\n💬 <b>Gruppo</b>: @LeAlternativeGruppoufficiale\n🤖 Codice sorgente di questo bot: <a href=\"https://gitea.it/LeAlternative/LeAlternativeBot-Telegram\">Gitea.it</a>
|
||||||
",
|
",
|
||||||
'reply_markup' =>json_encode([
|
'reply_markup' =>json_encode([
|
||||||
'inline_keyboard'=>[
|
'inline_keyboard'=>[
|
||||||
|
@ -62,9 +62,27 @@ if ($text == '/istruzioni')
|
||||||
$content = array(
|
$content = array(
|
||||||
'chat_id' => $chat_id,
|
'chat_id' => $chat_id,
|
||||||
'text' => "
|
'text' => "
|
||||||
Prova a taggare questo bot all'interno di <b>qualunque chat di Telegram</b>. Ti basterà scrivere @LeAlternativeBot <i>testodiricerca</i> e vedrai apparire magicamente i risultati!\nPuoi farlo anche all'interno di un gruppo senza che il bot sia stato invitato: mostrerà a tutti i risultati che hai scelto!\n\n📣 <b>Canale</b>: @LeAlternative\n💬 <b>Gruppo</b>: @LeAlternativeGruppoufficiale\n🤖 Codice sorgente di questo bot: <a href=\"https://gitea.it/LeAlternative/LeAlternativeBot-Telegram\">Gitea.it</a>
|
Questo bot si può utilizzare in due modi:\n\n<b>· Inline:</b> prova a taggare questo bot all'interno di <b>qualunque chat di Telegram</b>. Ti basterà scrivere @LeAlternativeBot <i>testodiricerca</i> e vedrai apparire magicamente i risultati!\nPuoi farlo anche all'interno di un gruppo senza che il bot sia stato invitato: mostrerà a tutti i risultati che hai scelto!\n\n<b>· Cerca:</b> se non trovi nulla nelle risposte rapide fai una ricerca sul sito scrivi direttamente al bot cerca <i>paroladacercare</i>\n\n📣 <b>Canale</b>: @LeAlternative\n💬 <b>Gruppo</b>: @LeAlternativeGruppoufficiale\n🤖 Codice sorgente di questo bot: <a href=\"https://gitea.it/LeAlternative/LeAlternativeBot-Telegram\">Gitea.it</a>
|
||||||
",
|
",
|
||||||
'parse_mode' => 'HTML',
|
'parse_mode' => 'HTML',
|
||||||
|
'disable_web_page_preview' => true
|
||||||
|
);
|
||||||
|
$telegram->sendMessage($content);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strpos($text, "cerca") === 0) {
|
||||||
|
$searchquery = substr($text, 6);
|
||||||
|
$url = "https://www.lealternative.net?s=".$searchquery."";
|
||||||
|
$content = array(
|
||||||
|
'chat_id' => $chat_id,
|
||||||
|
'text' => "Clicca sul pulsante qui sotto per cercare direttamente sul sito <b>LeAlternative</b>",
|
||||||
|
'reply_markup' =>json_encode([
|
||||||
|
'inline_keyboard'=>[
|
||||||
|
[
|
||||||
|
['text'=>'Cerca '.$searchquery.' su LeAlternative','url' => $url],
|
||||||
|
]
|
||||||
|
]]),
|
||||||
|
'parse_mode' => 'HTML',
|
||||||
'disable_web_page_preview' => true
|
'disable_web_page_preview' => true
|
||||||
);
|
);
|
||||||
$telegram->sendMessage($content);
|
$telegram->sendMessage($content);
|
||||||
|
|
Loading…
Reference in New Issue