本文整理汇总了PHP中Shop::context_id_shop方法的典型用法代码示例。如果您正苦于以下问题:PHP Shop::context_id_shop方法的具体用法?PHP Shop::context_id_shop怎么用?PHP Shop::context_id_shop使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Shop
的用法示例。
在下文中一共展示了Shop::context_id_shop方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initialize
public static function initialize()
{
global $cookie;
$shop = parent::initialize();
if (Module::isInstalled('agilemultipleseller') and Module::isInstalled('agilemultipleshop') and $shop->id > 1) {
include_once _PS_ROOT_DIR_ . "/modules/agilemultipleseller/SellerInfo.php";
include_once _PS_ROOT_DIR_ . "/modules/agilemultipleshop/agilemultipleshop.php";
self::$id_shop_owner = AgileSellerManager::getSellerIdByShopId($shop->id);
self::$id_shop_virtual = $shop->id;
self::$sellerinfo = new SellerInfo(SellerInfo::getIdBSellerId(self::$id_shop_owner));
$shop->id = Configuration::get('PS_SHOP_DEFAULT');
self::$context_id_shop = $shop->id;
}
return $shop;
}
示例2: initialize
//.........这里部分代码省略.........
public static function initialize()
{
if (!($id_shop = Tools::getValue('id_shop')) || defined('_PS_ADMIN_DIR_')) {
$found_uri = '';
$is_main_uri = false;
$host = Tools::getHttpHost();
$request_uri = rawurldecode($_SERVER['REQUEST_URI']);
$sql = 'SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM ' . _DB_PREFIX_ . 'shop_url su
LEFT JOIN ' . _DB_PREFIX_ . 'shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = \'' . pSQL($host) . '\' OR su.domain_ssl = \'' . pSQL($host) . '\')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC';
$result = Db::getInstance()->executeS($sql);
$through = false;
foreach ($result as $row) {
if (preg_match('#^' . preg_quote($row['uri'], '#') . '#i', $request_uri)) {
$through = true;
$id_shop = $row['id_shop'];
$found_uri = $row['uri'];
if ($row['main']) {
$is_main_uri = true;
}
break;
}
}
if ($through && $id_shop && !$is_main_uri) {
foreach ($result as $row) {
if ($row['id_shop'] == $id_shop && $row['main']) {
$request_uri = substr($request_uri, strlen($found_uri));
$url = str_replace('/' . '/', '/', $row['domain'] . $row['uri'] . $request_uri);
$redirect_type = Configuration::get('PS_CANONICAL_REDIRECT') == 2 ? '301' : '302';
header('HTTP/1.0 ' . $redirect_type . ' Moved');
header('Cache-Control: no-cache');
header('location: ' . Tools::getShopProtocol() . $url);
exit;
}
}
}
}
$http_host = Tools::getHttpHost();
$all_media = array();
if (!$id_shop && defined('_PS_ADMIN_DIR_') || Tools::isPHPCLI() || in_array($http_host, $all_media)) {
if (!$id_shop && Tools::isPHPCLI() || defined('_PS_ADMIN_DIR_')) {
$id_shop = (int) Configuration::get('PS_SHOP_DEFAULT');
}
$shop = new Shop((int) $id_shop);
if (!Validate::isLoadedObject($shop)) {
$shop = new Shop((int) Configuration::get('PS_SHOP_DEFAULT'));
}
$shop->virtual_uri = '';
if (Tools::isPHPCLI()) {
if (!isset($_SERVER['HTTP_HOST']) || empty($_SERVER['HTTP_HOST'])) {
$_SERVER['HTTP_HOST'] = $shop->domain;
}
if (!isset($_SERVER['SERVER_NAME']) || empty($_SERVER['SERVER_NAME'])) {
$_SERVER['SERVER_NAME'] = $shop->domain;
}
if (!isset($_SERVER['REMOTE_ADDR']) || empty($_SERVER['REMOTE_ADDR'])) {
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
}
}
} else {
$shop = new Shop($id_shop);
if (!Validate::isLoadedObject($shop) || !$shop->active) {
$default_shop = new Shop(Configuration::get('PS_SHOP_DEFAULT'));
if (!Validate::isLoadedObject($default_shop)) {
throw new PrestaShopException('Shop not found');
}
$params = $_GET;
unset($params['id_shop']);
$url = $default_shop->domain;
if (!Configuration::get('PS_REWRITING_SETTINGS')) {
$url .= $default_shop->getBaseURI() . 'index.php?' . http_build_query($params);
} else {
if (strpos($url, 'www.') === 0 && 'www.' . $_SERVER['HTTP_HOST'] === $url || $_SERVER['HTTP_HOST'] === 'www.' . $url) {
$url .= $_SERVER['REQUEST_URI'];
} else {
$url .= $default_shop->getBaseURI();
}
if (count($params)) {
$url .= '?' . http_build_query($params);
}
}
$redirect_type = Configuration::get('PS_CANONICAL_REDIRECT') == 2 ? '301' : '302';
header('HTTP/1.0 ' . $redirect_type . ' Moved');
header('location: ' . Tools::getShopProtocol() . $url);
exit;
} elseif (defined('_PS_ADMIN_DIR_') && empty($shop->physical_uri)) {
$shop_default = new Shop((int) Configuration::get('PS_SHOP_DEFAULT'));
$shop->physical_uri = $shop_default->physical_uri;
$shop->virtual_uri = $shop_default->virtual_uri;
}
}
self::$context_id_shop = $shop->id;
self::$context_id_shop_group = $shop->id_shop_group;
self::$context = self::CONTEXT_SHOP;
return $shop;
}
示例3: initialize
//.........这里部分代码省略.........
LEFT JOIN ' . _DB_PREFIX_ . 'shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = \'' . pSQL($host) . '\' OR su.domain_ssl = \'' . pSQL($host) . '\')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC';
$result = Db::getInstance()->executeS($sql);
$through = false;
foreach ($result as $row) {
// An URL matching current shop was found
if (preg_match('#^' . preg_quote($row['uri'], '#') . '#i', $request_uri)) {
$through = true;
$id_shop = $row['id_shop'];
$found_uri = $row['uri'];
if ($row['main']) {
$is_main_uri = true;
}
break;
}
}
// If an URL was found but is not the main URL, redirect to main URL
if ($through && $id_shop && !$is_main_uri) {
foreach ($result as $row) {
if ($row['id_shop'] == $id_shop && $row['main']) {
$request_uri = substr($request_uri, strlen($found_uri));
$url = str_replace('//', '/', $row['domain'] . $row['uri'] . $request_uri);
$redirect_type = Configuration::get('PS_CANONICAL_REDIRECT') == 2 ? '301' : '302';
header('HTTP/1.0 ' . $redirect_type . ' Moved');
header('Cache-Control: no-cache');
header('location: http://' . $url);
exit;
}
}
}
}
if (!$id_shop) {
$id_shop = 1;
}
if (!$id_shop && defined('_PS_ADMIN_DIR_') || Tools::isPHPCLI() || in_array(Tools::getHttpHost(), array(_MEDIA_SERVER_1_, _MEDIA_SERVER_2_, _MEDIA_SERVER_3_))) {
// If in admin, we can access to the shop without right URL
if (!$id_shop && Tools::isPHPCLI() || defined('_PS_ADMIN_DIR_')) {
$id_shop = (int) Configuration::get('PS_SHOP_DEFAULT');
}
$shop = new Shop((int) $id_shop);
if (!Validate::isLoadedObject($shop)) {
$shop = new Shop((int) Configuration::get('PS_SHOP_DEFAULT'));
}
$shop->physical_uri = preg_replace('#/+#', '/', str_replace('\\', '/', dirname(dirname($_SERVER['SCRIPT_NAME']))) . '/');
$shop->virtual_uri = '';
// Define some $_SERVER variables like HTTP_HOST if PHP is launched with php-cli
if (Tools::isPHPCLI()) {
if (!isset($_SERVER['HTTP_HOST']) || empty($_SERVER['HTTP_HOST'])) {
$_SERVER['HTTP_HOST'] = $shop->domain;
}
if (!isset($_SERVER['SERVER_NAME']) || empty($_SERVER['SERVER_NAME'])) {
$_SERVER['SERVER_NAME'] = $shop->domain;
}
if (!isset($_SERVER['REMOTE_ADDR']) || empty($_SERVER['REMOTE_ADDR'])) {
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
}
}
} else {
$shop = new Shop($id_shop);
if (!Validate::isLoadedObject($shop) || !$shop->active) {
// No shop found ... too bad, let's redirect to default shop
$default_shop = new Shop(Configuration::get('PS_SHOP_DEFAULT'));
// Hmm there is something really bad in your Prestashop !
if (!Validate::isLoadedObject($default_shop)) {
throw new PrestaShopException('Shop not found');
}
$params = $_GET;
unset($params['id_shop']);
$url = $default_shop->domain;
if (!Configuration::get('PS_REWRITING_SETTINGS')) {
$url .= $default_shop->getBaseURI() . 'index.php?' . http_build_query($params);
} else {
// Catch url with subdomain "www"
if (strpos($url, 'www.') === 0 && 'www.' . $_SERVER['HTTP_HOST'] === $url || $_SERVER['HTTP_HOST'] === 'www.' . $url) {
$url .= $_SERVER['REQUEST_URI'];
} else {
$url .= $default_shop->getBaseURI();
}
if (count($params)) {
$url .= '?' . http_build_query($params);
}
}
$redirect_type = Configuration::get('PS_CANONICAL_REDIRECT') == 2 ? '301' : '302';
header('HTTP/1.0 ' . $redirect_type . ' Moved');
header('location: http://' . $url);
exit;
} elseif (defined('_PS_ADMIN_DIR_') && empty($shop->physical_uri)) {
$shop_default = new Shop((int) Configuration::get('PS_SHOP_DEFAULT'));
$shop->physical_uri = $shop_default->physical_uri;
$shop->virtual_uri = $shop_default->virtual_uri;
}
}
self::$context_id_shop = $shop->id;
self::$context_id_shop_group = $shop->id_shop_group;
self::$context = self::CONTEXT_SHOP;
return $shop;
}