本文整理匯總了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();
}
示例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();
}
示例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");
}
}
示例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;
}
示例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");
}
示例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'])));
}
示例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');
}