1
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 对象。

4

1 回答 1

1
grep -lir '$this->_items = ' ~/MyProject
于 2012-06-30T10:57:13.110 回答