コード例 #1
0
ファイル: BasePresenter.php プロジェクト: shophp/shophp
 protected function startup()
 {
     parent::startup();
     if (!$this->currentCartService->getCurrentCart()->hasItems()) {
         $this->flashMessage('Yout cart is empty.');
         $this->redirect(':Front:Home:Homepage:');
     }
 }
コード例 #2
0
ファイル: BasePresenter.php プロジェクト: shophp/shophp
 protected function startup()
 {
     parent::startup();
     if (!$this->user->isLoggedIn()) {
         $this->flashMessage('To enter the section please log in.');
         $this->redirect(':Front:Home:Homepage:');
     }
 }