當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Shop::getInstance方法代碼示例

本文整理匯總了PHP中Shop::getInstance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Shop::getInstance方法的具體用法?PHP Shop::getInstance怎麽用?PHP Shop::getInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Shop的用法示例。


在下文中一共展示了Shop::getInstance方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: init

 public function init()
 {
     parent::init();
     AuthController::requireLogin();
     AuthController::requireShopSession();
     Shop::getInstance()->requireOpenShop();
     $this->setSmarty();
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:8,代碼來源:OverviewController.php

示例2: init

 public function init()
 {
     //precedence order
     parent::init();
     AuthController::requireLogin();
     AuthController::requireShopSession();
     Shop::getInstance()->requireOpenShop();
     $formProcess = new FormProductProcess();
     $this->verifyURLVars();
     $this->requireActiveCategory();
     $this->setSmarty();
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:12,代碼來源:Product_saleController.php

示例3: shopSessionSwitcher

 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");
     }
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:12,代碼來源:FrontController.php

示例4: startShopSession

 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;
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:12,代碼來源:Shop_session_starterController.php

示例5: setSmarty

 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");
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:6,代碼來源:TestController.php

示例6: setDefaultSmartyVars

 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'])));
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:4,代碼來源:ControllerCore.php

示例7: setSmarty

 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');
 }
開發者ID:ecuation,項目名稱:Control-de-stock,代碼行數:6,代碼來源:Shop_selectionController.php


注:本文中的Shop::getInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。