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对象。
答案 0 :(得分:1)
grep -lir '$this->_items = ' ~/MyProject