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


PHP Mage_Core_Model_Mysql4_Collection_Abstract::_afterLoad方法代码示例

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


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

示例1: _afterLoad

 /**
  * Unserialize additional_information in each item
  * @return Mage_Core_Model_Mysql4_Collection_Abstract
  */
 protected function _afterLoad()
 {
     foreach ($this->_items as $item) {
         $this->getResource()->unserializeFields($item);
     }
     return parent::_afterLoad();
 }
开发者ID:hunnybohara,项目名称:magento-chinese-localization,代码行数:11,代码来源:Collection.php

示例2: _afterLoad

 /**
  * @return Noovias_Cron_Model_Mysql4_Schedule_Config_Collection
  *
  *
  */
 protected function _afterLoad()
 {
     parent::_afterLoad();
     /**
      * Add availible cron jobs to collection, if they are not saved in the database, but
      * don't save the collection, new db entries are creted if a cron job is edited and saved
      * via the Backend Grid (Noovias - Cronjobs -> Settings)
      */
     $availibleJobCodes = $this->helperCron()->getAvailableJobCodesAsArray();
     foreach ($availibleJobCodes as $jobCode) {
         if (!$this->getItemByColumnValue('job_code', $jobCode)) {
             /** @var $itemToAdd Noovias_Cron_Model_Schedule_Config */
             $itemToAdd = $this->getServiceInitializeConfig()->initByJobCode($jobCode, false);
             $this->addItem($itemToAdd);
         }
     }
     /**
      * Set the _totalRecords variable in order to render the cron jobs in the
      * grid (Noovias - Cronjobs -> Settings) (renders only if the getSize method
      * returns a value > 0)
      */
     $this->_totalRecords = count($this->getItems());
     /** Sort ascending by job_code */
     $items = $this->getItems();
     usort($items, array('Noovias_Cron_Model_Mysql4_Schedule_Config_Collection', 'sortByJobCode'));
     $this->_items = $items;
     return $this;
 }
开发者ID:praxigento,项目名称:mage_app_prxgt_store,代码行数:33,代码来源:Collection.php

示例3: _afterLoad

 protected function _afterLoad()
 {
     parent::_afterLoad();
     if (VPROF) {
         Varien_Profiler::start('TTT1:' . __METHOD__);
     }
     $this->_addProductAttributes();
     if (VPROF) {
         Varien_Profiler::stop('TTT1:' . __METHOD__);
     }
     if (VPROF) {
         Varien_Profiler::start('TTT2:' . __METHOD__);
     }
     $this->_addAssociatedProductFilters();
     if (VPROF) {
         Varien_Profiler::stop('TTT2:' . __METHOD__);
     }
     if (VPROF) {
         Varien_Profiler::start('TTT3:' . __METHOD__);
     }
     $this->_loadLabels();
     if (VPROF) {
         Varien_Profiler::stop('TTT3:' . __METHOD__);
     }
     if (VPROF) {
         Varien_Profiler::start('TTT4:' . __METHOD__);
     }
     $this->_loadPrices();
     if (VPROF) {
         Varien_Profiler::stop('TTT4:' . __METHOD__);
     }
     return $this;
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:33,代码来源:Resource_Eav_Mysql4_Product_Type_Configurable_Attribute_Collection.php

示例4: _afterLoad

 /**
  * After load processing - adds store information to the datasets
  *
  */
 protected function _afterLoad()
 {
     if ($this->_previewFlag) {
         $items = $this->getColumnValues('verticalmenu_id');
         if (count($items)) {
             $select = $this->getConnection()->select()->from($this->getTable('ves_verticalmenu/verticalmenu_store'))->where($this->getTable('ves_verticalmenu/verticalmenu_store') . '.verticalmenu_id IN (?)', $items);
             if ($result = $this->getConnection()->fetchPairs($select)) {
                 foreach ($this as $item) {
                     if (!isset($result[$item->getData('verticalmenu_id')])) {
                         continue;
                     }
                     if ($result[$item->getData('verticalmenu_id')] == 0) {
                         $stores = Mage::app()->getStores(false, true);
                         $storeId = current($stores)->getId();
                         $storeCode = key($stores);
                     } else {
                         $storeId = $result[$item->getData('verticalmenu_id')];
                         $storeCode = Mage::app()->getStore($storeId)->getCode();
                     }
                     if ($item->getData('is_default') == 1) {
                         $this->setData('is_default', Mage::helper('ves_verticalmenu')->__('<span class="hightlight">Default</span>'));
                     } else {
                         $this->setData('is_default', Mage::helper('ves_verticalmenu')->__('No'));
                     }
                     $item->setData('_first_store_id', $storeId);
                     $item->setData('store_code', $storeCode);
                 }
             }
         }
     }
     parent::_afterLoad();
 }
开发者ID:booklein,项目名称:bookle,代码行数:36,代码来源:Collection.php

示例5: _afterLoad

 /**
  * After load processing - adds store information to the datasets
  *
  */
 protected function _afterLoad()
 {
     $connection = $this->getConnection();
     foreach ($this as $item) {
         $page_stores = array();
         if ($alias = $item->getData("alias")) {
             $cms_page = Mage::getModel("cms/page")->load($alias, "identifier");
             if ($cms_page->getPageId()) {
                 $page_stores = $cms_page->getStoreId();
                 $select = $connection->select()->from(array('cps' => $this->getTable('cms/page_store')))->where('cps.page_id = (?)', $cms_page->getPageId());
                 if ($result = $connection->fetchPairs($select)) {
                     if ($result[$cms_page->getPageId()] == 0) {
                         $stores = Mage::app()->getStores(false, true);
                         $storeId = current($stores)->getId();
                         $storeCode = key($stores);
                     } else {
                         $storeId = $result[$cms_page->getPageId()];
                         $storeCode = Mage::app()->getStore($storeId)->getCode();
                     }
                     $item->setData('_first_store_id', $storeId);
                     $item->setData('store_code', $storeCode);
                 }
                 $stores = isset($stores) && $stores ? $stores : array(0);
                 $item->setData("store_id", $page_stores);
             }
         }
     }
     parent::_afterLoad();
 }
开发者ID:booklein,项目名称:bookle,代码行数:33,代码来源:Collection.php

示例6: _afterLoad

 protected function _afterLoad()
 {
     if ($this->_previewFlag) {
         $items = $this->getColumnValues('splash_id');
         if (count($items)) {
             $select = $this->getConnection()->select()->from($this->getTable('splash/splash_store'))->where($this->getTable('splash/splash_store') . '.splash_id IN (?)', $items);
             if ($result = $this->getConnection()->fetchPairs($select)) {
                 foreach ($this as $item) {
                     if (!isset($result[$item->getData('splash_id')])) {
                         continue;
                     }
                     if ($result[$item->getData('splash_id')] == 0) {
                         $stores = Mage::app()->getStores(false, true);
                         $storeId = current($stores)->getId();
                         $storeCode = key($stores);
                     } else {
                         $storeId = $result[$item->getData('splash_id')];
                         $storeCode = Mage::app()->getStore($storeId)->getCode();
                     }
                     $item->setData('_first_store_id', $storeId);
                     $item->setData('store_code', $storeCode);
                 }
             }
         }
     }
     parent::_afterLoad();
 }
开发者ID:jokusafet,项目名称:MagentoSource,代码行数:27,代码来源:Collection.php

示例7: _afterLoad

 protected function _afterLoad()
 {
     parent::_afterLoad();
     $this->_loadLabels();
     $this->_loadPrices();
     return $this;
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:7,代码来源:Collection.php

示例8: _afterLoad

 protected function _afterLoad()
 {
     foreach ($this->_items as $i) {
         $i->afterLoad();
     }
     return parent::_afterLoad();
 }
开发者ID:RxOuchy,项目名称:LDS_Client_Solutions,代码行数:7,代码来源:Collection.php

示例9: _afterLoad

 protected function _afterLoad()
 {
     foreach ($this->_items as $model) {
         $model->setData('store_ids', explode(',', $model->getData('store_ids')));
     }
     return parent::_afterLoad();
 }
开发者ID:praxigento,项目名称:mage_app_prxgt_store,代码行数:7,代码来源:Collection.php

示例10: _afterLoad

 protected function _afterLoad()
 {
     foreach ($this->_items as $_7f11b1962e14e69c8844d0655d561b3e8cd30d5b) {
         $_7f11b1962e14e69c8844d0655d561b3e8cd30d5b->correctActive();
     }
     return parent::_afterLoad();
 }
开发者ID:jronatay,项目名称:ultimo-magento-jron,代码行数:7,代码来源:Collection.php

示例11: _afterLoad

 protected function _afterLoad()
 {
     /*$items = $this->getColumnValues('post_id');
       if (count($items)) {
           $select = $this->getConnection()->select()
                   ->from($this->getTable('store'))
                   ->where($this->getTable('store').'.post_id IN (?)', $items);
           if ($result = $this->getConnection()->fetchPairs($select)) {
               foreach ($this as $item) {
                   if (!isset($result[$item->getData('post_id')])) {
                       continue;
                   }
                   if ($result[$item->getData('post_id')] == 0) {
                       $storeCode = key(Mage::app()->getStores(false, true));
                   } else {
                       $storeCode = Mage::app()->getStore($result[$item->getData('post_id')])->getCode();
                   }
                   $item->setData('store_code', $storeCode);
               }
           }
       }*/
     if (count($this) > 0) {
         Mage::dispatchEvent("fontis_blog_post_collection_load_after", array("collection" => $this));
     }
     return parent::_afterLoad();
 }
开发者ID:ikommerce,项目名称:fontis_blog,代码行数:26,代码来源:Collection.php

示例12: _afterLoad

 protected function _afterLoad()
 {
     /*foreach ($this->getItems() as $item)
       {
           $item->callAfterLoad();
       }*/
     return parent::_afterLoad();
 }
开发者ID:TusharKDonda,项目名称:maruti,代码行数:8,代码来源:Collection.php

示例13: _afterLoad

 /**
  * Inflate all items in collection
  *
  * @return Mage_Core_Model_Resource_Db_Collection_Abstract
  */
 protected function _afterLoad()
 {
     /* @var Listrak_Remarketing_Model_Session $i */
     foreach ($this->_items as $i) {
         $i->afterLoad();
     }
     return parent::_afterLoad();
 }
开发者ID:RxOuchy,项目名称:LDS_Client_Solutions,代码行数:13,代码来源:Collection.php

示例14: _afterLoad

 protected function _afterLoad()
 {
     parent::_afterLoad();
     foreach ($this->_items as $item) {
         $item->getResource()->_afterLoad($item);
     }
     return $this;
 }
开发者ID:vinayshuklasourcefuse,项目名称:sareez,代码行数:8,代码来源:Glace_Menu_Model_Resource_Item_Collection.php

示例15: _afterLoad

 protected function _afterLoad()
 {
     parent::_afterLoad();
     foreach ($this->_items as $item) {
         $item->loadSerializedData();
     }
     return $this;
 }
开发者ID:jokusafet,项目名称:MagentoSource,代码行数:8,代码来源:Abstract.php


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