* @ignore */ require_once 'HTML/QuickForm/Controller.php'; // Load some default action handlers require_once 'HTML/QuickForm/Action/Submit.php'; require_once 'HTML/QuickForm/Action/Jump.php'; require_once 'HTML/QuickForm/Action/Display.php'; require_once 'HTML/QuickForm/Action/Direct.php'; session_start(); class TabbedPage extends HTML_QuickForm_Page { function buildTabs() { $this->_formBuilt = true; // Here we get all page names in the controller $pages = array(); $myName = $current = $this->getAttribute('id'); while (null !== ($current = $this->controller->getPrevName($current))) { $pages[] = $current; } $pages = array_reverse($pages); $pages[] = $current = $myName; while (null !== ($current = $this->controller->getNextName($current))) { $pages[] = $current; } // Here we display buttons for all pages, the current one's is disabled foreach ($pages as $pageName) { $tabs[] = $this->createElement( 'submit', $this->getButtonName($pageName), ucfirst($pageName), array('class' => 'flat') + ($pageName == $myName? array('disabled' => 'disabled'): array()) ); } $this->addGroup($tabs, 'tabs', null, ' ', false); } function addGlobalSubmit() { $this->addElement('submit', $this->getButtonName('submit'), 'Big Red Button', array('class' => 'bigred')); $this->setDefaultAction('submit'); } } class PageFoo extends TabbedPage { function buildForm() { $this->buildTabs(); $this->addElement('header', null, 'Foo page'); $radio[] = &$this->createElement('radio', null, null, 'Yes', 'Y'); $radio[] = &$this->createElement('radio', null, null, 'No', 'N'); $radio[] = &$this->createElement('radio', null, null, 'Maybe', 'M'); $this->addGroup($radio, 'iradYesNoMaybe', 'Do you want this feature?', '
'); $this->addElement('text', 'tstText', 'Why do you want it?', array('size'=>20, 'maxlength'=>50)); $this->addRule('iradYesNoMaybe', 'Check a radiobutton', 'required'); $this->addGlobalSubmit(); } } class PageBar extends TabbedPage { function buildForm() { $this->buildTabs(); $this->addElement('header', null, 'Bar page'); $this->addElement('date', 'favDate', 'Favourite date:', array('format' => 'd-M-Y', 'minYear' => 1950, 'maxYear' => date('Y'))); $checkbox[] = &$this->createElement('checkbox', 'A', null, 'A'); $checkbox[] = &$this->createElement('checkbox', 'B', null, 'B'); $checkbox[] = &$this->createElement('checkbox', 'C', null, 'C'); $checkbox[] = &$this->createElement('checkbox', 'D', null, 'D'); $checkbox[] = &$this->createElement('checkbox', 'X', null, 'X'); $checkbox[] = &$this->createElement('checkbox', 'Y', null, 'Y'); $checkbox[] = &$this->createElement('checkbox', 'Z', null, 'Z'); $this->addGroup($checkbox, 'favLetter', 'Favourite letters:', array(' ', '
')); $this->addGlobalSubmit(); } } class PageBaz extends TabbedPage { function buildForm() { $this->buildTabs(); $this->addElement('header', null, 'Baz page'); $this->addElement('textarea', 'textPoetry', 'Recite a poem:', array('rows' => 5, 'cols' => 40)); $this->addElement('textarea', 'textOpinion', 'Did you like this demo?', array('rows' => 5, 'cols' => 40)); $this->addRule('textPoetry', 'Pretty please!', 'required'); $this->addGlobalSubmit(); } } // We subclass the default 'display' handler to customize the output class ActionDisplay extends HTML_QuickForm_Action_Display { function _renderForm(&$page) { $renderer =& $page->defaultRenderer(); // Do some cheesy customizations $renderer->setElementTemplate("\n\t\n\t\t{element}\n\t", 'tabs'); $renderer->setFormTemplate(<<<_HTML Controller example 3: tabbed form {content}
_HTML ); $page->display(); } } class ActionProcess extends HTML_QuickForm_Action { function perform(&$page, $actionName) { echo "Submit successful!
\n
\n";
        var_dump($page->controller->exportValues());
        echo "\n
\n"; } } $tabbed =& new HTML_QuickForm_Controller('Tabbed', false); $tabbed->addPage(new PageFoo('foo')); $tabbed->addPage(new PageBar('bar')); $tabbed->addPage(new PageBaz('baz')); // These actions manage going directly to the pages with the same name $tabbed->addAction('foo', new HTML_QuickForm_Action_Direct()); $tabbed->addAction('bar', new HTML_QuickForm_Action_Direct()); $tabbed->addAction('baz', new HTML_QuickForm_Action_Direct()); // We actually add these handlers here for the sake of example // They can be automatically loaded and added by the controller $tabbed->addAction('jump', new HTML_QuickForm_Action_Jump()); $tabbed->addAction('submit', new HTML_QuickForm_Action_Submit()); // The customized actions $tabbed->addAction('display', new ActionDisplay()); $tabbed->addAction('process', new ActionProcess()); $tabbed->setDefaults(array( 'iradYesNoMaybe' => 'M', 'favLetter' => array('A' => true, 'Z' => true), 'favDate' => array('d' => 1, 'M' => 1, 'Y' => 2001), 'textOpinion' => 'Yes, it rocks!' )); $tabbed->run(); ?>