| 
#!/usr/bin/php<?php
 
 require_once('../include/class.dialog.php');
 
 $dialog = Dialog::Factory('menu');
 
 $items= array(
 array('a', 'Apple'),
 array('b', 'Banana'),
 array('c', 'Ananas'),
 array(
 'id'      => 'd',
 'caption' => 'Pear'
 )
 );
 
 $dialog->addOptions($items)
 ->returnCaption(true)
 ->setOkLabel('Eat')
 ->disableCancel(true);
 
 $res = $dialog->show();
 
 
 system('clear');
 if ($res === false) {
 die("You pressed ESC or hit CANCEL! Bad Boy!\n");
 }
 
 echo "Cmd: ". $dialog->getCommand() . "\n";
 die("\nYou eated: [". $res . "]\n\n");
 
 |