- <?php
- class PageFirst extends HTML_QuickForm_Page
- {
- function buildForm()
- {
- $this->_formBuilt = true;
-
- $this->addElement('header', null, 'Wizard page 1 of 3 (A)');
-
- $radio[] = &$this->createElement('radio', null, null, 'Yes', 'Y');
- $radio[] = &$this->createElement('radio', null, null, 'No', 'N');
- $this->addGroup($radio, 'iradYesNo', 'Are you absolutely sure?');
-
- $this->addElement('submit', $this->getButtonName('next'), 'Next >>');
-
- $this->addRule('iradYesNo', 'Check Yes or No', 'required');
-
- $this->setDefaultAction('next');
- }
- }
- ?>