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


PHP Varien_Data_Collection::getItems方法代码示例

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


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

示例1: testRemoveAllItems

 public function testRemoveAllItems()
 {
     $model = new Varien_Data_Collection();
     $model->addItem(new Varien_Object());
     $model->addItem(new Varien_Object());
     $this->assertCount(2, $model->getItems());
     $model->removeAllItems();
     $this->assertEmpty($model->getItems());
 }
开发者ID:nemphys,项目名称:magento2,代码行数:9,代码来源:CollectionTest.php

示例2: _prepareColumns

 protected function _prepareColumns()
 {
     try {
         $collection = $this->_createCollection();
         $collection->setPageSize(1);
         $collection->load();
     } catch (Exception $e) {
         Mage::getSingleton('adminhtml/session')->addError($this->__('An error occured rendering the grid: ' . $e->getMessage()));
         Mage::logException($e);
         $collection = new Varien_Data_Collection();
     }
     $config = $this->_getReport()->getGridConfig();
     $filterable = $config->getFilterable();
     $items = $collection->getItems();
     if (count($items)) {
         $item = reset($items);
         foreach ($item->getData() as $key => $val) {
             $isFilterable = false;
             if (isset($filterable[$key])) {
                 $isFilterable = $filterable[$key];
             } elseif (in_array($key, $filterable)) {
                 $isFilterable = 'adminhtml/widget_grid_column_filter_text';
             }
             $this->addColumn($key, array('header' => Mage::helper('core')->__($key), 'index' => $key, 'filter' => $isFilterable, 'sortable' => true));
         }
     }
     return parent::_prepareColumns();
 }
开发者ID:jeo4long,项目名称:custom-reports,代码行数:28,代码来源:Grid.php

示例3: _getAllParentConfigurableSkus

 /**
  * Get the skus of all potential configurable products that a simple product
  * within the collection of products to be cleaned may need to be linked to.
  * @param  Varien_Data_Collection $productCollection
  * @return array
  */
 protected function _getAllParentConfigurableSkus(Varien_Data_Collection $productCollection)
 {
     $helper = $this->_helper;
     $catalogId = $this->_config->catalogId;
     return array_map(function ($product) use($helper, $catalogId) {
         return $helper->normalizeSku($product->getStyleId(), $catalogId);
     }, array_filter($productCollection->getItems(), array($this, '_filterProductWithConfigParent')));
 }
开发者ID:ryaan-anthony,项目名称:magento-retail-order-management,代码行数:14,代码来源:Cleaner.php


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