public function init()
 {
     parent::init();
     AuthController::requireLogin();
     AuthController::requireShopSession();
     Shop::getInstance()->requireOpenShop();
     $this->setSmarty();
 }
 public function init()
 {
     //precedence order
     parent::init();
     AuthController::requireLogin();
     AuthController::requireShopSession();
     Shop::getInstance()->requireOpenShop();
     $formProcess = new FormProductProcess();
     $this->verifyURLVars();
     $this->requireActiveCategory();
     $this->setSmarty();
 }
Пример #3
0
 public function shopSessionSwitcher()
 {
     if (!isset($_SESSION['id_shop'])) {
         return false;
     }
     Shop::getInstance()->shopSessionSwitch();
     if (Shop::getInstance()->isOpenShop()) {
         $this->context->smarty->assign("isOpenShop", "true");
     } else {
         $this->context->smarty->assign("isOpenShop", "false");
     }
 }
 public function startShopSession()
 {
     if (Shop::getInstance()->isShopUser()) {
         if (AuthController::setShopSession()) {
             Shop::setShopSession($_GET['id_shop']);
             header('Location: home.php');
             exit;
         }
     }
     header('Location: shop_selection.php?errorMessage=accessDenied');
     exit;
 }
Пример #5
0
 public function setSmarty()
 {
     $this->context->smarty->assign('shop_name', Shop::getInstance()->getShopName($_GET['id_shop']));
     $this->context->smarty->assign("page_title", "Test");
     $this->context->smarty->display("test.tpl");
 }
Пример #6
0
 public function setDefaultSmartyVars()
 {
     $this->context->smarty->assign(array("_MAIN_URL_" => _MAIN_URL_, "_ROOT_DIR_" => _ROOT_DIR_, "_BASE_ADMIN_URI_" => _BASE_ADMIN_URI_, "_IMG_DIR_" => _IMG_DIR_, "_USER_KEY_" => $_SESSION['userKey'], "_IS_ADMIN_" => $_SESSION['is_admin'], "_USER_NAME_" => AuthController::getUserName(), "shop_name" => Shop::getInstance()->getShopName($_SESSION['id_shop']), "time" => date('l F j, Y'), "languageId" => _ID_LANG_, "lang" => $this->context->language->getLanguage(), 'file_name' => basename($_SERVER['PHP_SELF'])));
 }
 public function setSmarty()
 {
     $this->context->smarty->assign("shopList", Shop::getInstance()->getShops());
     $this->context->smarty->assign("page_title", "Shop selection");
     $this->context->smarty->display('shop_selection.tpl');
 }