Hello, i want a complete example of using Callbackquery and InlineKeyboard.
My CallbackqueryCommand.php file :
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Longman\TelegramBot\Commands\SystemCommands;
use Longman\TelegramBot\Commands\SystemCommand;
use Longman\TelegramBot\Entities\ServerResponse;
/**
* Callback query command
*/
class CallbackqueryCommand extends SystemCommand
{
/**
* @var callable[]
*/
protected static $callbacks = [];
/**
* @var string
*/
protected $name = 'callbackquery';
/**
* @var string
*/
protected $description = 'Reply to callback query';
/**
* @var string
*/
protected $version = '1.0.0';
/**
* Command execute method
*
* @return ServerResponse
*/
public function execute()
{
// $callback_query = $this->getCallbackQuery();
// $user_id = $callback_query->getFrom()->getId();
// $query_id = $callback_query->getId();
// $query_data = $callback_query->getData();
$answer = null;
$callback_query = $this->getCallbackQuery();
// Call all registered callbacks.
foreach (self::$callbacks as $callback) {
$answer = $callback($callback_query);
}
return ($answer instanceof ServerResponse) ? $answer : $callback_query->answer();
}
/**
* Add a new callback handler for callback queries.
*
* @param $callback
*/
public static function addCallbackHandler($callback)
{
self::$callbacks[] = $callback;
}
}
Hello
Here is a Example of a InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/InlinekeyboardCommand.php
and Here is a matched Example of the CallbackQuery to reponse to the InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/CallbackqueryCommand.php
BR
Hitmare
Hello
Here is a Example of a InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/InlinekeyboardCommand.phpand Here is a matched Example of the CallbackQuery to reponse to the InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/CallbackqueryCommand.phpBR
Hitmare
Thank you .
No Problem
Most helpful comment
Hello
Here is a Example of a InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/InlinekeyboardCommand.php
and Here is a matched Example of the CallbackQuery to reponse to the InlineKeyboard
https://github.com/php-telegram-bot/example-bot/blob/master/Commands/CallbackqueryCommand.php
BR
Hitmare