コード例 #1
0
ファイル: PercentsController.php プロジェクト: noikiy/PD
 public function createAction()
 {
     $this->setViewChange('form');
     if ($this->getRequest()->isPost()) {
         Model_Percents::createPercent($this->getRequest()->getParams());
         $this->session->set('successfu_edite', true);
         $this->redirect($this->getRequest()->getBaseUrl() . $this->getRequest()->getModule() . '/percents/');
     }
     $this->getForm();
 }