wizard = $wizard; } /** * Overwrite this to initialize this wizard page */ public function init() { } /** * Return whether this page needs to be shown to the user * * Overwrite this to add page specific handling * * @return bool */ public function isRequired() { return true; } /** * Set the title for this wizard page * * @param string $title The title to set */ public function setTitle($title) { $this->title = $title; } /** * Return the title of this wizard page * * @return string */ public function getTitle() { return $this->title; } /** * Return a config containing all values provided by the user * * @return Zend_Config */ public function getConfig() { return $this->getConfiguration(); } }