_formParams = $formParams; } /** * @copydoc Form::fetch() */ function fetch($request) { $templateMgr = TemplateManager::getManager($request); $templateMgr->assign('formParams', $this->getFormParams()); return parent::fetch($request); } // // Getters and Setters // /** * Get the extra form parameters. * @return array */ function getFormParams() { return $this->_formParams; } } ?>