コード例 #1
0
ファイル: shares.php プロジェクト: comraq/practice-work
 protected function add()
 {
     if (!isset($_SESSION['is_logged_in'])) {
         header('Location: ' . ROOT_URL . 'shares');
     }
     $viewmodel = new ShareModel();
     $this->getView($viewmodel->add(), true);
 }