We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i made this code
/* inlinekeyboard */ $keyboard_buttons = [ new InlineKeyboardButton(['text' => $ico_enab.' Enabled', 'callback_data' => "switchcam;".$row['camera_name'].';enable']), new InlineKeyboardButton(['text' => $ico_disab.' Disabled', 'callback_data' => "switchcam;".$row['camera_name'].';disable']), ]; $inline_keyboard = new InlineKeyboard($keyboard_buttons);
it is possible to hide the keyboard (or delete entire message) wher user click a button?
The text was updated successfully, but these errors were encountered:
solved with
return Request::editMessageText([ 'chat_id' => $callback_query->getMessage()->getChat()->getId(), 'message_id' => $callback_query->getMessage()->getMessageId(), 'text' => "text", 'reply_markup' => $inline_keyboard_markup, 'parse_mode' => 'Markdown', ]);
Sorry, something went wrong.
No branches or pull requests
i made this code
it is possible to hide the keyboard (or delete entire message) wher user click a button?
The text was updated successfully, but these errors were encountered: