示例#1
0
文件: Base.php 项目: fousheezy/form
 public function getForms()
 {
     if (!isset($this->forms)) {
         $forms = parent::getForms();
         // set up main form with map
         /* @var $mainForm \Zend\Form\Form */
         $mainForm = $forms[static::MAIN_TAG];
         $options = $mainForm->getOptions();
         $options[Subform::OPTION_MAP_ARRAY] = $this->formMap;
         $mainForm->setOptions($options);
     }
     return $this->forms;
 }