Example #1
0
 /**
  * action formを設定する
  *
  * @param $action_name
  */
 public function setupActionForm($action_name)
 {
     $form_name = $this->getActionFormName($action_name);
     $this->action_form = new $form_name($this);
     $this->getBackend()->setActionForm($this->action_form);
     $this->action_form->setFormDef_PreHelper();
     $this->action_form->setFormVars();
 }