public function __construct($options = null)
 {
     parent::__construct($options);
     $this->setup();
 }
Example #2
0
 /**
  * Create a new wizard page
  *
  * @param   Wizard  $wizard     The wizard this page is part of
  * @param   mixed   $options    Zend_Form options
  */
 public function __construct(Wizard $wizard = null, $options = null)
 {
     parent::__construct($options);
     $this->wizard = $wizard;
 }