コード例 #1
0
ファイル: List.php プロジェクト: hientruong90/ee_14_installer
 /**
  * Initializes collection
  */
 protected function _construct()
 {
     $this->_collection = Mage::getModel('review/review')->getProductCollection();
     $this->_collection->addStoreFilter(Mage::app()->getStore()->getId())->addCustomerFilter(Mage::getSingleton('customer/session')->getCustomerId())->setDateOrder();
 }
コード例 #2
0
ファイル: List.php プロジェクト: natxetee/magento2
 protected function _initCollection()
 {
     $this->_collection = Mage::getModel('Mage_Review_Model_Review')->getProductCollection();
     $this->_collection->addStoreFilter(Mage::app()->getStore()->getId())->addCustomerFilter(Mage::getSingleton('Mage_Customer_Model_Session')->getCustomerId())->setDateOrder();
     return $this;
 }