Current File : //opt/RZphp5/includes/doc/HTML_Progress2/examples/generator/generatorcus2.php |
<?php
/**
* HTML_Progress2_Generator with a grey-orange skin
*
* @version $Id: generatorcus2.php,v 1.1 2006/08/09 15:47:10 farell Exp $
* @author Laurent Laville <pear@laurent-laville.org>
* @package HTML_Progress2
* @subpackage Examples
* @access public
* @example examples/generator/generatorcus2.php
* generatorcus2 source code
* @link http://www.laurent-laville.org/img/progress/screenshot/generatorcus2.png
* screenshot (Image PNG, 768x414 pixels) 38.2 Kb
*/
require_once 'HTML/Progress2/Generator.php';
session_start();
$tabbed =& HTML_Progress2_Generator::singleton('PBwizard');
// add ability to dump some informations for debugging
$tabbed->addActions(array('dump' => 'ActionDump'));
// add default renderer but with a custom stylesheet
$css = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'generator.css';
$tabbed->addAction('display', new ActionDisplay($css));
$tabbed->run();
?>