コード例 #1
0
 /**
  * This function is responsible for the content of the Additional information facebox popup window
  * @param
  * @return
  * @author John Burrin
  */
 public function additionalDialogAction()
 {
     $pageForm = new Form_PortfolioInsuranceQuote_additionalDialog();
     $pageForm->getElement('questionId')->setValue($this->getRequest()->getParam('qid'));
     $pageSession = new Zend_Session_Namespace('portfolio_insurance_quote');
     $output = array();
     // This controller is called within a popup (facebox style) so doesn't require a layout file
     $this->_helper->getHelper('layout')->disableLayout();
     $this->_formStepCommonPopulate($pageForm, "additionalDialog");
     $this->view->form = $pageForm;
 }