这个对象如何或在哪里被初始化?

时间:2012-06-28 16:17:03

标签: php magento

public function getItemsCollection($useCache = true)
  {
      if (is_null($this->_items)) {
          $this->_items = Mage::getModel('sales/quote_item')->getCollection();
          $this->_items->setQuote($this);
      }
      return $this->_items;
  }

在此范围内,如何找到初始化_items的内容?这不是我遇到过的Magento对象。

1 个答案:

答案 0 :(得分:1)

grep -lir '$this->_items = ' ~/MyProject