#!/usr/local/bin/php
<?php
    
/**
    * o------------------------------------------------------------------------------o
    * | This package is dual licensed as GPL and a commercial license.               |
    * | If you use the code commercially (or if you don't want to be restricted by   |
    * | the GPL license), you will need the commercial license. It's only £49 (GBP - |
    * | roughly $98 depending on the exchange rate) and helps me out a lot. Thanks.  |
    * o------------------------------------------------------------------------------o
    *
    * © Copyright Richard Heyes
    */

    
require_once('./Menu.php');

    
$menu[] = array('text' => 'First item', 'func' => 'menu_item1');
    
$menu[] = array('text' => 'Second item', 'func' => 'menu_item2');

    function
Menu_item1()
    {
        exit;
    }

    function
Menu_item2()
    {
        exit;
    }

    
Console_Menu::Display('This is a sample menu', $menu);
?>