当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Catalog_Model_Category::getPathInStore方法代码示例

本文整理汇总了PHP中Mage_Catalog_Model_Category::getPathInStore方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Catalog_Model_Category::getPathInStore方法的具体用法?PHP Mage_Catalog_Model_Category::getPathInStore怎么用?PHP Mage_Catalog_Model_Category::getPathInStore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Catalog_Model_Category的用法示例。


在下文中一共展示了Mage_Catalog_Model_Category::getPathInStore方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: buildCategoryString

 /**
  * Builds a tagging string of the given category including all its parent
  * categories.
  * The categories are sorted by their position in the category tree path.
  *
  * @param Mage_Catalog_Model_Category $category the category model.
  *
  * @return string
  */
 public function buildCategoryString($category)
 {
     $data = array();
     if ($category instanceof Mage_Catalog_Model_Category) {
         /** @var $categories Mage_Catalog_Model_Category[] */
         $categories = $category->getParentCategories();
         $path = $category->getPathInStore();
         $ids = array_reverse(explode(',', $path));
         foreach ($ids as $id) {
             if (isset($categories[$id]) && $categories[$id]->getName()) {
                 $data[] = $categories[$id]->getName();
             }
         }
     }
     if (!empty($data)) {
         return DS . implode(DS, $data);
     } else {
         return '';
     }
 }
开发者ID:ngagestudios,项目名称:nosto-magento-extension,代码行数:29,代码来源:Data.php

示例2: getParentCategories

 /**
  * Return parent categories of category
  *
  * @param Mage_Catalog_Model_Category $category
  * @return array
  */
 public function getParentCategories($category)
 {
     $pathIds = array_reverse(explode(',', $category->getPathInStore()));
     $categories = Mage::getResourceModel('Mage_Catalog_Model_Resource_Category_Collection')->setStore(Mage::app()->getStore())->addAttributeToSelect('name')->addAttributeToSelect('url_key')->addFieldToFilter('entity_id', array('in' => $pathIds))->addFieldToFilter('is_active', 1)->load()->getItems();
     return $categories;
 }
开发者ID:nemphys,项目名称:magento2,代码行数:12,代码来源:Category.php

示例3: getParentCategories

 /**
  * Return parent categories of category
  *
  * @param Mage_Catalog_Model_Category $category
  * @return array
  */
 public function getParentCategories($category, $isActive = true)
 {
     $categories = array();
     $select = $this->_getReadAdapter()->select()->from(array('main_table' => $this->getMainStoreTable($category->getStoreId())), array('main_table.entity_id', 'main_table.name'))->joinLeft(array('url_rewrite' => $this->getTable('core/url_rewrite')), 'url_rewrite.category_id=main_table.entity_id AND url_rewrite.is_system=1 AND url_rewrite.product_id IS NULL AND url_rewrite.store_id="' . $category->getStoreId() . '" AND url_rewrite.id_path LIKE "category/%"', array('request_path' => 'url_rewrite.request_path'))->where('main_table.entity_id IN (?)', array_reverse(explode(',', $category->getPathInStore())));
     if ($isActive) {
         $select->where('main_table.is_active = ?', '1');
     }
     $select->order('main_table.path ASC');
     $result = $this->_getReadAdapter()->fetchAll($select);
     foreach ($result as $row) {
         $row['id'] = $row['entity_id'];
         $categories[$row['entity_id']] = AO::getModel('catalog/category')->setData($row);
     }
     return $categories;
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:21,代码来源:Resource_Eav_Mysql4_Category_Flat.php

示例4: testGetPathInStore

 public function testGetPathInStore()
 {
     $this->_model->load(5);
     $this->assertEquals('5,4,3', $this->_model->getPathInStore());
 }
开发者ID:nemphys,项目名称:magento2,代码行数:5,代码来源:CategoryTreeTest.php

示例5: getParentCategories

 /**
  * Return parent categories of category
  *
  * @param Mage_Catalog_Model_Category $category
  * @param bool $isActive
  * @return array
  */
 public function getParentCategories($category, $isActive = true)
 {
     $categories = array();
     $select = $this->_getReadAdapter()->select()->from(array('main_table' => $this->getMainStoreTable($category->getStoreId())), array('main_table.entity_id', 'main_table.name'))->where('main_table.entity_id IN (?)', array_reverse(explode(',', $category->getPathInStore())));
     if ($isActive) {
         $select->where('main_table.is_active = ?', '1');
     }
     $select->order('main_table.path ASC');
     $urlRewrite = $this->_factory->getCategoryUrlRewriteHelper();
     $urlRewrite->joinTableToSelect($select, $category->getStoreId());
     $result = $this->_getReadAdapter()->fetchAll($select);
     foreach ($result as $row) {
         $row['id'] = $row['entity_id'];
         $categories[$row['entity_id']] = Mage::getModel('catalog/category')->setData($row);
     }
     return $categories;
 }
开发者ID:blazeriaz,项目名称:youguess,代码行数:24,代码来源:Flat.php


注:本文中的Mage_Catalog_Model_Category::getPathInStore方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。