コード例 #1
0
ファイル: Factory.php プロジェクト: phpro/zf-annotated-forms
 /**
  * {@inheritDoc}
  */
 public function configureForm(FormInterface $form, $spec)
 {
     $this->triggerEvent(FormEvent::EVENT_CONFIGURE_FORM_PRE, $form, array('spec' => $spec));
     parent::configureForm($form, $spec);
     $this->triggerEvent(FormEvent::EVENT_CONFIGURE_FORM_POST, $form, array('spec' => $spec));
     return $form;
 }