protected function startup() { parent::startup(); if (!$this->currentCartService->getCurrentCart()->hasItems()) { $this->flashMessage('Yout cart is empty.'); $this->redirect(':Front:Home:Homepage:'); } }
protected function startup() { parent::startup(); if (!$this->user->isLoggedIn()) { $this->flashMessage('To enter the section please log in.'); $this->redirect(':Front:Home:Homepage:'); } }