示例#1
0
 public function createAction()
 {
     $this->setViewChange('form');
     if ($this->getRequest()->isPost()) {
         Model_Countries::createCountry($this->getRequest()->getParams());
         $this->session->set('successfu_edite', true);
         $url = '';
         if ($this->getRequest()->getQuery('page')) {
             $url = '?page=' . $this->getRequest()->getQuery('page');
         }
         $this->redirect($this->getRequest()->getBaseUrl() . $this->getRequest()->getModule() . '/countries/' . $url);
     }
     $this->getForm();
 }