Beispiel #1
0
 /**
  * Находит нужную форму и выполняет ее
  *
  * @return bool
  */
 private function _processForm()
 {
     $this->_form->setData($this->_request);
     if ($this->_form->validate()) {
         $this->_form->runActions();
         return true;
     }
     return false;
 }