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


PHP Varien_Object_Cache类代码示例

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


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

示例1: getBatchImportModel

 /**
  * Retrieve Batch import model
  *
  * @return Mage_Dataflow_Model_Import_Export
  */
 public function getBatchImportModel()
 {
     if (is_null($this->_batchImport)) {
         $object = Mage::getModel('dataflow/batch_import');
         $this->_batchImport = Varien_Object_Cache::singleton()->save($object);
     }
     return Varien_Object_Cache::singleton()->load($this->_batchImport);
 }
开发者ID:xiaoguizhidao,项目名称:blingjewelry-prod,代码行数:13,代码来源:Column.php

示例2: objects

 /**
  * Varien Objects Cache
  *
  * @param string $key optional, if specified will load this key
  * @return Varien_Object_Cache
  */
 public static function objects($key = null)
 {
     if (!self::$_objects) {
         self::$_objects = new Varien_Object_Cache();
     }
     if (is_null($key)) {
         return self::$_objects;
     } else {
         return self::$_objects->load($key);
     }
 }
开发者ID:nemphys,项目名称:magento2,代码行数:17,代码来源:Mage.php

示例3: singleton

 /**
  * Singleton factory
  *
  * @return Varien_Object_Cache
  */
 public static function singleton()
 {
     if (!self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
开发者ID:barneydesmond,项目名称:propitious-octo-tribble,代码行数:12,代码来源:Cache.php

示例4: getConfigModel

 public function getConfigModel()
 {
     if (is_null($this->_configModel)) {
         $object = Mage::getModel('core/config_data');
         $this->_configModel = Varien_Object_Cache::singleton()->save($object);
     }
     return Varien_Object_Cache::singleton()->load($this->_configModel);
 }
开发者ID:rlucia,项目名称:magento-oscom-migration-tool,代码行数:8,代码来源:Oscommerce.php

示例5: getBatchImportModel

 /**
  * Retrieve Batch import model
  *
  * @return Mage_Dataflow_Model_Import_Export
  */
 public function getBatchImportModel()
 {
     if (is_null($this->_batchImport)) {
         $object = Mage::getModel('Mage_Dataflow_Model_Batch_Import');
         $object->setBatchId($this->getId());
         $this->_batchImport = Varien_Object_Cache::singleton()->save($object);
     }
     return Varien_Object_Cache::singleton()->load($this->_batchImport);
 }
开发者ID:natxetee,项目名称:magento2,代码行数:14,代码来源:Batch.php


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