Advertisement
Darlanar

Untitled

Jan 29th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1.  $keyboard2 = array('one_time' => false,
  2.     'buttons' => array(
  3.     array(
  4.       array(
  5.         'action' => array(
  6.                            'type' => 'text',
  7.                            'payload' => '{"button": "1"}',
  8.                            'label' => 'Red'
  9.         ), 'color' => 'negative'),
  10.       array(
  11.           'action' => array(
  12.                            'type' => 'text',
  13.                            'payload' => '{"button": "2"}',
  14.                            'label' => 'Green'
  15.         ), 'color' => 'positive')
  16.   ),
  17.     array(
  18.       array(
  19.         'action' => array(
  20.                            'type' => 'text',
  21.                            'payload' => '{"button": "3"}',
  22.                            'label' => 'White'
  23.         ), 'color' => 'default'),
  24.       array(
  25.           'action' => array(
  26.                            'type' => 'text',
  27.                            'payload' => '{"button": "4"}',
  28.                            'label' => 'Blue'
  29.         ), 'color' => 'primary')
  30.     )
  31.   )
  32. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement