getRequest()->isPost()) { throw new Syj_Exception_Request(); } $data = $this->getRequest()->getPost(); if ($form instanceof Syj_Processor_Interface) { $form->process($data); } if (!$form->isValid($data)) { throw new Syj_Exception_Request(); } return $data; } }