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


PHP Shop::getBaseURL方法代碼示例

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


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

示例1: _getDefaultShopUrl

 private function _getDefaultShopUrl()
 {
     if (version_compare(_PS_VERSION_, '1.5', '>')) {
         $shop = new Shop(Configuration::get('PS_SHOP_DEFAULT'));
         return $shop->getBaseURL();
     } else {
         return __PS_BASE_URI__;
     }
 }
開發者ID:kevindesousa,項目名稱:ebay,代碼行數:9,代碼來源:EbayStat.php

示例2: renderChoicesSelect

 public function renderChoicesSelect()
 {
     $spacer = str_repeat(' ', $this->spacer_size);
     $items = $this->getMenuItems();
     $html = '<select multiple="multiple" id="availableItems" style="width: 300px; height: 160px;">';
     $html .= '<optgroup label="' . $this->l('CMS') . '">';
     $html .= $this->getCMSOptions(0, 1, $this->context->language->id, $items);
     $html .= '</optgroup>';
     // BEGIN SUPPLIER
     $html .= '<optgroup label="' . $this->l('Supplier') . '">';
     // Option to show all Suppliers
     $html .= '<option value="ALLSUP0">' . $this->l('All suppliers') . '</option>';
     $suppliers = Supplier::getSuppliers(false, $this->context->language->id);
     foreach ($suppliers as $supplier) {
         if (!in_array('SUP' . $supplier['id_supplier'], $items)) {
             $html .= '<option value="SUP' . $supplier['id_supplier'] . '">' . $spacer . $supplier['name'] . '</option>';
         }
     }
     $html .= '</optgroup>';
     // BEGIN Manufacturer
     $html .= '<optgroup label="' . $this->l('Manufacturer') . '">';
     // Option to show all Manufacturers
     $html .= '<option value="ALLMAN0">' . $this->l('All manufacturers') . '</option>';
     $manufacturers = Manufacturer::getManufacturers(false, $this->context->language->id);
     foreach ($manufacturers as $manufacturer) {
         if (!in_array('MAN' . $manufacturer['id_manufacturer'], $items)) {
             $html .= '<option value="MAN' . $manufacturer['id_manufacturer'] . '">' . $spacer . $manufacturer['name'] . '</option>';
         }
     }
     $html .= '</optgroup>';
     // BEGIN Categories
     $shop = new Shop((int) Shop::getContextShopID());
     $html .= '<optgroup label="' . $this->l('Categories') . '">';
     $shops_to_get = Shop::getContextListShopID();
     foreach ($shops_to_get as $shop_id) {
         $html .= $this->generateCategoriesOption($this->customGetNestedCategories($shop_id, null, (int) $this->context->language->id, false), $items);
     }
     $html .= '</optgroup>';
     // BEGIN Shops
     if (Shop::isFeatureActive()) {
         $html .= '<optgroup label="' . $this->l('Shops') . '">';
         $shops = Shop::getShopsCollection();
         foreach ($shops as $shop) {
             if (!$shop->setUrl() && !$shop->getBaseURL()) {
                 continue;
             }
             if (!in_array('SHOP' . (int) $shop->id, $items)) {
                 $html .= '<option value="SHOP' . (int) $shop->id . '">' . $spacer . $shop->name . '</option>';
             }
         }
         $html .= '</optgroup>';
     }
     // BEGIN Products
     $html .= '<optgroup label="' . $this->l('Products') . '">';
     $html .= '<option value="PRODUCT" style="font-style:italic">' . $spacer . $this->l('Choose product ID') . '</option>';
     $html .= '</optgroup>';
     // BEGIN Menu Top Links
     $html .= '<optgroup label="' . $this->l('Menu Top Links') . '">';
     $links = MenuTopLinks::gets($this->context->language->id, null, (int) Shop::getContextShopID());
     foreach ($links as $link) {
         if ($link['label'] == '') {
             $default_language = Configuration::get('PS_LANG_DEFAULT');
             $link = MenuTopLinks::get($link['id_linksmenutop'], $default_language, (int) Shop::getContextShopID());
             if (!in_array('LNK' . (int) $link[0]['id_linksmenutop'], $items)) {
                 $html .= '<option value="LNK' . (int) $link[0]['id_linksmenutop'] . '">' . $spacer . Tools::safeOutput($link[0]['label']) . '</option>';
             }
         } elseif (!in_array('LNK' . (int) $link['id_linksmenutop'], $items)) {
             $html .= '<option value="LNK' . (int) $link['id_linksmenutop'] . '">' . $spacer . Tools::safeOutput($link['label']) . '</option>';
         }
     }
     $html .= '</optgroup>';
     $html .= '</select>';
     return $html;
 }
開發者ID:prestashop,項目名稱:blocktopmenu,代碼行數:74,代碼來源:blocktopmenu.php

示例3: generationUrl

 public static function generationUrl()
 {
     $value = Tools::getValue('value');
     $response = '';
     if ($value) {
         $langId = Context::getContext()->language->id;
         $shopId = Context::getContext()->shop->id;
         $arr = explode('-', $value);
         switch ($arr[0]) {
             case 'PRD':
                 $product = new Product((int) $arr[1], true, (int) $langId);
                 $response = Tools::HtmlEntitiesUTF8($product->getLink());
                 break;
             case 'CAT':
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getCategoryLink((int) $arr[1], null, $langId));
                 break;
             case 'CMS_CAT':
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getCMSCategoryLink((int) $arr[1], null, $langId));
                 break;
             case 'CMS':
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getCMSLink((int) $arr[1], null, $langId));
                 break;
             case 'ALLMAN':
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getPageLink('manufacturer'), true, $langId);
                 break;
             case 'MAN':
                 $man = new Manufacturer((int) $arr[1], $langId);
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getManufacturerLink($man->id, $man->link_rewrite, $langId));
                 break;
             case 'ALLSUP':
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getPageLink('supplier'), true, $langId);
                 break;
             case 'SUP':
                 $sup = new Supplier((int) $arr[1], $langId);
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getSupplierLink($sup->id, $sup->link_rewrite, $langId));
                 break;
             case 'PAG':
                 $pag = Meta::getMetaByPage($arr[1], $langId);
                 $response = Tools::HtmlEntitiesUTF8(Context::getContext()->link->getPageLink($pag['page'], true, $langId));
                 break;
             case 'SHO':
                 $shop = new Shop((int) $key);
                 $response = $shop->getBaseURL();
                 break;
             default:
                 $response = '#';
                 break;
         }
     } else {
         $response = '#';
     }
     die(Tools::jsonEncode($response));
 }
開發者ID:habypk,項目名稱:zocart,代碼行數:53,代碼來源:ajax.php

示例4: fomartLink

 private function fomartLink($item = null, $id_lang = null)
 {
     if (is_null($item)) {
         return;
     }
     if (!empty($this->context->controller->php_self)) {
         $page_name = $this->context->controller->php_self;
     } else {
         $page_name = Dispatcher::getInstance()->getController();
         $page_name = preg_match('/^[0-9]/', $page_name) ? 'page_' . $page_name : $page_name;
     }
     $html = '';
     $selected_item = false;
     if (is_null($id_lang)) {
         $id_lang = (int) $this->context->language->id;
     }
     $type = substr($item['link'], 0, 3);
     $key = substr($item['link'], 3, strlen($item['link']) - 3);
     switch ($type) {
         case 'CAT':
             if ($page_name == 'category' && (int) Tools::getValue('id_category') == (int) $key) {
                 $selected_item = true;
             }
             $html = $this->context->link->getCategoryLink((int) $key, null, $id_lang);
             break;
         case 'CMS':
             if ($page_name == 'cms' && (int) Tools::getValue('id_cms') == (int) $key) {
                 $selected_item = true;
             }
             $html = $this->context->link->getCMSLink((int) $key, null, $id_lang);
             break;
         case 'MAN':
             if ($page_name == 'manufacturer' && (int) Tools::getValue('id_manufacturer') == (int) $key) {
                 $selected_item = true;
             }
             $man = new Manufacturer((int) $key, $id_lang);
             $html = $this->context->link->getManufacturerLink($man->id, $man->link_rewrite, $id_lang);
             break;
         case 'SUP':
             if ($page_name == 'supplier' && (int) Tools::getValue('id_supplier') == (int) $key) {
                 $selected_item = true;
             }
             $sup = new Supplier((int) $key, $id_lang);
             $html = $this->context->link->getSupplierLink($sup->id, $sup->link_rewrite, $id_lang);
             break;
         case 'PAG':
             $pag = Meta::getMetaByPage($key, $id_lang);
             $html = $this->context->link->getPageLink($pag['page'], true, $id_lang);
             if ($page_name == $pag['page']) {
                 $selected_item = true;
             }
             break;
         case 'SHO':
             $shop = new Shop((int) $key);
             $html = $shop->getBaseURL();
             break;
         default:
             $html = $item['link'];
             break;
     }
     return array('link' => $html, 'selected_item' => $selected_item);
 }
開發者ID:abdoumej,項目名稱:libsamy,代碼行數:62,代碼來源:advancetopmenu.php

示例5: generateUrl

 protected function generateUrl($value, $default = "#", $prefix = '')
 {
     $response = $default;
     if ($prefix) {
         $value .= $prefix;
     }
     if ($value) {
         $langId = $this->context->language->id;
         $shopId = $this->context->shop->id;
         $arr = explode('|', $value);
         switch ($arr[0]) {
             case 'PRD':
                 $product = new Product((int) $arr[1], true, (int) $langId);
                 $response = Tools::HtmlEntitiesUTF8($product->getLink());
                 break;
             case 'CAT':
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getCategoryLink((int) $arr[1], null, $langId));
                 break;
             case 'CMS_CAT':
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getCMSCategoryLink((int) $arr[1], null, $langId));
                 break;
             case 'CMS':
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getCMSLink((int) $arr[1], null, $langId));
                 break;
             case 'ALLMAN':
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getPageLink('manufacturer'), true, $langId);
                 break;
             case 'MAN':
                 $man = new Manufacturer((int) $arr[1], $langId);
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getManufacturerLink($man->id, $man->link_rewrite, $langId));
                 break;
             case 'ALLSUP':
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getPageLink('supplier'), true, $langId);
                 break;
             case 'SUP':
                 $sup = new Supplier((int) $arr[1], $langId);
                 $response = Tools::HtmlEntitiesUTF8($this->context->link->getSupplierLink($sup->id, $sup->link_rewrite, $langId));
                 break;
             case 'SHO':
                 $shop = new Shop((int) $key);
                 $response = $shop->getBaseURL();
                 break;
             case 'PAG':
                 $pag = Meta::getMetaByPage($arr[1], $langId);
                 if (strpos($pag['page'], 'module-') === false) {
                     $response = Tools::HtmlEntitiesUTF8($this->context->link->getPageLink($pag['page'], true, $langId));
                 } else {
                     $page = explode('-', $pag['page']);
                     Context::getContext()->link->getModuleLink($page[1], $page[2]);
                     $response = Tools::HtmlEntitiesUTF8($this->context->link->getModuleLink($page[1], $page[2]));
                 }
                 break;
             default:
                 break;
         }
     }
     return $response;
 }
開發者ID:zangles,項目名稱:lennyba,代碼行數:58,代碼來源:megaboxs.php

示例6: getDataToQr

 private function getDataToQr()
 {
     $this->setContext();
     $array = array();
     $shop_info = new Shop((int) Configuration::get('PS_SHOP_DEFAULT'));
     $shop_url = $shop_info->getBaseURL();
     $store_url = str_replace('http://', '', $shop_url);
     $store_url = str_replace('https://', '', $store_url);
     preg_replace('/\\/*$/i', '', $store_url);
     $array['url'] = $store_url;
     $data = unserialize(Configuration::get('MOBASSISTANTCONNECTOR'));
     $array['login'] = $data['login'];
     $array['password'] = $data['password'];
     return $array;
 }
開發者ID:pacxs,項目名稱:pacxscom,代碼行數:15,代碼來源:mobassistantconnector.php

示例7: displaySeoUrlList

 protected function displaySeoUrlList()
 {
     $id_search = Tools::getValue('id_search');
     $this->_startForm(array('id' => 'SEOURLListForm'));
     $this->_displayTitle($this->l('SEO URL list'));
     $this->_showInfo($this->l('You will find here the list of all the SEO URLs pages you have created for this search engine. You have to add them in your menu, slideshow, footer, blocks, or anywhere you want in your website for Google crawling'));
     $seoSearchs = AdvancedSearchSeoClass::getSeoSearchs($this->_cookie->id_lang, false, $id_search);
     if ($seoSearchs && self::_isFilledArray($seoSearchs)) {
         $new_SeoSearch = array();
         foreach ($seoSearchs as $row) {
             $resultTotalProducts = $this->countProductFromSeoCriteria($id_search, unserialize($row['criteria']), $row['id_currency']);
             $ObjAdvancedSearchSeoClass = new AdvancedSearchSeoClass($row['id_seo'], null);
             if (version_compare(_PS_VERSION_, '1.5.0.0', '>=') && Shop::isFeatureActive()) {
                 $shopUrl = new Shop($this->_context->shop->id);
                 $base_url = $shopUrl->getBaseURL();
             } else {
                 $base_url = Tools::getShopDomain(true) . __PS_BASE_URI__;
             }
             if (version_compare(_PS_VERSION_, '1.5.0.0', '>=') && Configuration::get('PS_SSL_ENABLED') && Configuration::get('PS_SSL_ENABLED_EVERYWHERE')) {
                 $base_url = 'https://' . ltrim($base_url, 'http://');
             }
             foreach ($this->_languages as $language) {
                 $url = $base_url . (Language::countActiveLanguages() > 1 ? $language['iso_code'] . '/' : '') . 's/' . (int) $ObjAdvancedSearchSeoClass->id . '/' . $ObjAdvancedSearchSeoClass->seo_url[$language['id_lang']];
                 $title = htmlentities($ObjAdvancedSearchSeoClass->title[$language['id_lang']], ENT_COMPAT, 'UTF-8');
                 $new_SeoSearch[$language['id_lang']][$ObjAdvancedSearchSeoClass->id]['url'] = $url;
                 $new_SeoSearch[$language['id_lang']][$ObjAdvancedSearchSeoClass->id]['title'] = $title;
             }
         }
         $seoSearchs = $new_SeoSearch;
         unset($new_SeoSearch);
         if ($seoSearchs && self::_isFilledArray($seoSearchs)) {
             $this->_html .= '<p>' . $this->l('Please select the language :') . '<p>';
             $this->displayPMFlags();
             $this->_html .= '<div class="clear"></div>';
             foreach ($seoSearchs as $id_lang => $seo_urls) {
                 $this->_html .= '<div id="langseo_url_' . $id_lang . '" class="pmFlag pmFlagLang_' . $id_lang . '" style="display: ' . ($id_lang == $this->_default_language ? 'block' : 'none') . '; float: left;">';
                 $this->_html .= '<h3>' . $this->l('HTML version:') . '</h3>';
                 $this->_html .= '<textarea cols="110" rows="10">';
                 $this->_html .= htmlentities('<ul>', ENT_COMPAT, 'UTF-8') . "\n";
                 foreach ($seo_urls as $seo_url) {
                     $this->_html .= htmlentities('<li><a href="' . $seo_url['url'] . '" title="' . $seo_url['title'] . '">' . $seo_url['title'] . '</a></li>', ENT_COMPAT, 'UTF-8') . "\n";
                 }
                 $this->_html .= htmlentities('</ul>', ENT_COMPAT, 'UTF-8') . "\n";
                 $this->_html .= '</textarea>';
                 $this->_html .= '<h3>' . $this->l('CSV version:') . '</h3>';
                 $this->_html .= '<textarea cols="110" rows="10">';
                 foreach ($seo_urls as $seo_url) {
                     $this->_html .= '"' . $seo_url['title'] . '";"' . $seo_url['url'] . '"' . "\n";
                 }
                 $this->_html .= '</textarea>';
                 $this->_html .= '</div>';
             }
         }
     } else {
         $this->_showInfo($this->l('No seo page at this time please add one'));
     }
     $this->_endForm(array('id' => 'SEOURLListForm'));
 }
開發者ID:acreno,項目名稱:pm-ps,代碼行數:58,代碼來源:pm_advancedsearch4.php

示例8:

	            ';
                break;
            case 'state':
                /*$sql = 'SELECT distinct s.id_state AS id, s.name AS name 
		            FROM `'._DB_PREFIX_.'state` s
		                INNER JOIN `'._DB_PREFIX_.'sellerinfo` si ON s.id_state = si.id_state
開發者ID:sho5kubota,項目名稱:guidingyou2,代碼行數:6,代碼來源:agilemultipleshop.php


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