2017 © Pedro PelĂĄez
 

library inline-keyboard-pagination

PHP Telegram Bot InlineKeyboard Pagination

image

php-telegram-bot/inline-keyboard-pagination

PHP Telegram Bot InlineKeyboard Pagination

  • Friday, September 8, 2017
  • by noplanman
  • Repository
  • 3 Watchers
  • 10 Stars
  • 239 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 7 Forks
  • 4 Open issues
  • 3 Versions
  • 6 % Grown

The README.md

Telegram Bot Inline Keyboard Pagination

[Scrutinizer Code Quality][code-quality] Codecov Build Status, (*1)

Latest Stable Version Total Downloads License, (*2)

Installation

Composer

composer require php-telegram-bot/inline-keyboard-pagination

Usage

Test Data

$items        = range(1, 100); // required. 
$command      = 'testCommand'; // optional. Default: pagination
$selectedPage = 10;            // optional. Default: 1
$labels       = [              // optional. Change button labels (showing defaults)
    'default'  => '%d',
    'first'    => '« %d',
    'previous' => 'â€č %d',
    'current'  => '· %d ·',
    'next'     => '%d â€ș',
    'last'     => '%d »',
];

// optional. Change the callback_data format, adding placeholders for data (showing default)
$callbackDataFormat = 'command={COMMAND}&oldPage={OLD_PAGE}&newPage={NEW_PAGE}'

How To Use

// Define inline keyboard pagination.
$ikp = new InlineKeyboardPagination($items, $command);
$ikp->setMaxButtons(7, true); // Second parameter set to always show 7 buttons if possible.
$ikp->setLabels($labels);
$ikp->setCallbackDataFormat($callbackDataFormat);

// Get pagination.
$pagination = $ikp->getPagination($selectedPage);

// or, in 2 steps.
$ikp->setSelectedPage($selectedPage);
$pagination = $ikp->getPagination();

Now, $pagination['keyboard'] is basically a row that contains the pagination., (*3)

// Use it in your request.
if (!empty($pagination['keyboard'])) {
    //$pagination['keyboard'][0]['callback_data']; // command=testCommand&oldPage=10&newPage=1
    //$pagination['keyboard'][1]['callback_data']; // command=testCommand&oldPage=10&newPage=7

    ...
    $data['reply_markup'] = [
        'inline_keyboard' => [
            $pagination['keyboard'],
        ],
    ];
    ...
}

To get the callback data, you can use the provided helper method (only works when using the default callback data format):, (*4)

// e.g. Callback data.
$callback_data = 'command=testCommand&oldPage=10&newPage=1';

$params = InlineKeyboardPagination::getParametersFromCallbackData($callbackData);

//$params = [
//    'command' => 'testCommand',
//    'oldPage' => '10',
//    'newPage' => '1',
//];

// or, just use PHP directly if you like. (literally what the helper does!)
parse_str($callbackData, $params);

Code Quality

Run the PHPUnit tests via Composer script., (*5)

composer test

License

The MIT License (MIT). Please see License File for more information., (*6)

Project based on Telegram Bot Pagination by lartie., (*7)

The Versions

08/09 2017

dev-develop

dev-develop https://github.com/php-telegram-bot/inline-keyboard-pagination

PHP Telegram Bot InlineKeyboard Pagination

  Sources   Download

MIT

The Requires

  • php ^7.0

 

The Development Requires

inline bot query pagination callback telegram keyboard

08/09 2017

dev-master

9999999-dev https://github.com/php-telegram-bot/inline-keyboard-pagination

PHP Telegram Bot InlineKeyboard Pagination

  Sources   Download

MIT

The Requires

  • php ^7.0

 

The Development Requires

inline bot query pagination callback telegram keyboard

08/09 2017

1.0.0

1.0.0.0 https://github.com/php-telegram-bot/inline-keyboard-pagination

PHP Telegram Bot InlineKeyboard Pagination

  Sources   Download

MIT

The Requires

  • php ^7.0

 

The Development Requires

inline bot query pagination callback telegram keyboard