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


PHP Mage_Catalog_Model_Category::getUrlInstance方法代碼示例

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


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

示例1: getObject

 public function getObject(Mage_Catalog_Model_Category $category)
 {
     /** @var $productCollection Mage_Catalog_Model_Resource_Product_Collection */
     $productCollection = $category->getProductCollection();
     $productCollection = $productCollection->addMinimalPrice();
     $category->setProductCount($productCollection->getSize());
     $transport = new Varien_Object();
     Mage::dispatchEvent('algolia_category_index_before', array('category' => $category, 'custom_data' => $transport));
     $customData = $transport->getData();
     $storeId = $category->getStoreId();
     $category->getUrlInstance()->setStore($storeId);
     $path = '';
     foreach ($category->getPathIds() as $categoryId) {
         if ($path != '') {
             $path .= ' / ';
         }
         $path .= $this->getCategoryName($categoryId, $storeId);
     }
     $image_url = NULL;
     try {
         $image_url = $category->getImageUrl();
     } catch (Exception $e) {
         /* no image, no default: not fatal */
     }
     $data = array('objectID' => $category->getId(), 'name' => $category->getName(), 'path' => $path, 'level' => $category->getLevel(), 'url' => Mage::getBaseUrl() . $category->getRequestPath(), '_tags' => array('category'), 'popularity' => 1, 'product_count' => $category->getProductCount());
     if (!empty($image_url)) {
         $data['image_url'] = $image_url;
     }
     foreach ($this->config->getCategoryAdditionalAttributes($storeId) as $attribute) {
         $value = $category->getData($attribute['attribute']);
         $attribute_ressource = $category->getResource()->getAttribute($attribute['attribute']);
         if ($attribute_ressource) {
             $value = $attribute_ressource->getFrontend()->getValue($category);
         }
         if (isset($data[$attribute['attribute']])) {
             $value = $data[$attribute['attribute']];
         }
         if ($value) {
             $data[$attribute['attribute']] = $value;
         }
     }
     $data = array_merge($data, $customData);
     foreach ($data as &$data0) {
         $data0 = $this->try_cast($data0);
     }
     return $data;
 }
開發者ID:IvanRybakov,項目名稱:algoliasearch-magento,代碼行數:47,代碼來源:Categoryhelper.php

示例2: testGetUrlInstance

 public function testGetUrlInstance()
 {
     $instance = $this->_model->getUrlInstance();
     $this->assertInstanceOf('Mage_Core_Model_Url', $instance);
     $this->assertSame($instance, $this->_model->getUrlInstance());
 }
開發者ID:natxetee,項目名稱:magento2,代碼行數:6,代碼來源:CategoryTest.php

示例3: getCategoryJSON

 /**
  * Prepare category JSON
  *
  * @param Mage_Catalog_Model_Category $category
  * @return array
  */
 public function getCategoryJSON(Mage_Catalog_Model_Category $category)
 {
     $transport = new Varien_Object();
     Mage::dispatchEvent('algolia_category_index_before', array('category' => $category, 'custom_data' => $transport));
     $customData = $transport->getData();
     $storeId = $category->getStoreId();
     $category->getUrlInstance()->setStore($storeId);
     $path = '';
     foreach ($category->getPathIds() as $categoryId) {
         if ($path != '') {
             $path .= ' / ';
         }
         $path .= $this->getCategoryName($categoryId, $storeId);
     }
     $imageUrl = NULL;
     try {
         $imageUrl = $category->getImageUrl();
     } catch (Exception $e) {
         /* no image, no default: not fatal */
     }
     $data = array('objectID' => $this->getCategoryObjectId($category), 'name' => $category->getName(), 'path' => $path, 'level' => $category->getLevel(), 'url' => $category->getUrl(), '_tags' => array('category'), 'popularity' => 1);
     if ($this->isIndexProductCount()) {
         $data['product_count'] = $data['popularity'] = $category->getProductCount();
     }
     if (!empty($imageUrl)) {
         $data['image_url'] = $imageUrl;
     }
     foreach ($this->getCategoryAdditionalAttributes($storeId) as $attributeCode) {
         $value = $category->hasData($this->_dataPrefix . $attributeCode) ? $category->getData($this->_dataPrefix . $attributeCode) : $category->getData($attributeCode);
         $value = Mage::getResourceSingleton('algoliasearch/fulltext')->getAttributeValue($attributeCode, $value, $storeId, Mage_Catalog_Model_Category::ENTITY);
         if ($value) {
             $data[$attributeCode] = $value;
         }
     }
     $data = array_merge($data, $customData);
     return $data;
 }
開發者ID:par-orillonsoft,項目名稱:algoliasearch-magento,代碼行數:43,代碼來源:Data.php


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