コード例 #1
0
ファイル: AdminController.php プロジェクト: ktanifuji/gr3
 public function editinfoAction()
 {
     try {
         $this->checkLogin();
         $master = new Master();
         $master->update_info($this->request->getPost('info'));
         header("Location: " . ROOT_URL . "/admin/finish/");
     } catch (Exception $e) {
         $this->displayErrorView($e->getMessage());
     }
 }