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


PHP Mage_Catalog_Block_Product_Abstract::getCacheKeyInfo方法代码示例

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


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

示例1: getCacheKeyInfo

 public function getCacheKeyInfo()
 {
     $info = parent::getCacheKeyInfo();
     $info[] = Mage::app()->getStore()->getCurrentCurrencyCode();
     $info[] = Mage::getSingleton('customer/session')->getCustomerGroupId();
     $info[] = $this->getProduct()->getId();
     return $info;
 }
开发者ID:technomagegithub,项目名称:magento,代码行数:8,代码来源:Block.php

示例2: getCacheKeyInfo

 /**
  * Get cache key informative items with the position number to differentiate
  *
  * @return array
  */
 public function getCacheKeyInfo()
 {
     $cacheKeyInfo = parent::getCacheKeyInfo();
     foreach (Mage::app()->getLayout()->getXpath('//action[@method="addPriceBlockType"]') as $element) {
         if (!empty($element->type)) {
             $prefix = 'price_block_type_' . (string) $element->type;
             $cacheKeyInfo[$prefix . '_block'] = empty($element->block) ? '' : (string) $element->block;
             $cacheKeyInfo[$prefix . '_template'] = empty($element->template) ? '' : (string) $element->template;
         }
     }
     $cacheKeyInfo[] = $this->getPosition();
     return $cacheKeyInfo;
 }
开发者ID:hazaeluz,项目名称:magento_connect,代码行数:18,代码来源:Item.php

示例3: getCacheKeyInfo

 /**
  * Get cache key informative items with the position number to differentiate
  *
  * @return array
  */
 public function getCacheKeyInfo()
 {
     $cacheKeyInfo = parent::getCacheKeyInfo();
     $elements = Mage::app()->getLayout()->getXpath('//action[@method="addPriceBlockType"]');
     if (is_array($elements)) {
         foreach ($elements as $element) {
             if (!empty($element->type)) {
                 $prefix = 'price_block_type_' . (string) $element->type;
                 $cacheKeyInfo[$prefix . '_block'] = empty($element->block) ? '' : (string) $element->block;
                 $cacheKeyInfo[$prefix . '_template'] = empty($element->template) ? '' : (string) $element->template;
             }
         }
     }
     $cacheKeyInfo[] = $this->getPosition();
     if (!is_null($this->getItem())) {
         $cacheKeyInfo['item_id'] = $this->getItem()->getId();
     }
     return $cacheKeyInfo;
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:24,代码来源:Item.php

示例4: getCacheKeyInfo

 /**
  * Cache this block for each product separately
  * 
  * @return array
  */
 public function getCacheKeyInfo()
 {
     $info = parent::getCacheKeyInfo();
     $info[] = 'PRODUCT_' . $this->getProduct()->getId();
     return $info;
 }
开发者ID:xxorax,项目名称:VinaiKopp_ProductCategories,代码行数:11,代码来源:CategoryList.php

示例5: getCacheKeyInfo

 public function getCacheKeyInfo()
 {
     return array_merge(parent::getCacheKeyInfo(), array(Mage::getSingleton('customer/session')->getCustomerGroupId(), ($product = $this->getProduct()) ? $product->getId() : null, $this->getData('attribute_code'), $this->getData('product_count')));
 }
开发者ID:hughwilkie,项目名称:MVentory_Productivity,代码行数:4,代码来源:Related.php


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