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;
}
In this scope how can I find what is initializing _items? It’s not a Magento object that I’ve come accross.
1 Answer