-
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathCallbackqueryCommand.php
More file actions
61 lines (53 loc) · 1.48 KB
/
CallbackqueryCommand.php
File metadata and controls
61 lines (53 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PhpTelegramBot\Core\Commands\SystemCommands;
use PhpTelegramBot\Core\Commands\SystemCommand;
use PhpTelegramBot\Core\Request;
/**
* Callback query command
*
* This command handles all callback queries sent via inline keyboard buttons.
*
* @see InlinekeyboardCommand.php
*/
class CallbackqueryCommand extends SystemCommand
{
/**
* @var string
*/
protected $name = 'callbackquery';
/**
* @var string
*/
protected $description = 'Reply to callback query';
/**
* @var string
*/
protected $version = '1.1.1';
/**
* Command execute method
*
* @return \PhpTelegramBot\Core\Entities\ServerResponse
* @throws \PhpTelegramBot\Core\Exception\TelegramException
*/
public function execute()
{
$callback_query = $this->getCallbackQuery();
$callback_query_id = $callback_query->getId();
$callback_data = $callback_query->getData();
$data = [
'callback_query_id' => $callback_query_id,
'text' => 'Hello World!',
'show_alert' => $callback_data === 'thumb up',
'cache_time' => 5,
];
return Request::answerCallbackQuery($data);
}
}