*/ class Mage_Reports_Model_Product_Index_Viewed extends Mage_Reports_Model_Product_Index_Abstract { /** * Cache key name for Count of product index * * @var string */ protected $_countCacheKey = 'product_index_viewed_count'; /** * Initialize resource model * */ protected function _construct() { $this->_init('reports/product_index_viewed'); } /** * Retrieve Exclude Product Ids List for Collection * * @return array */ public function getExcludeProductIds() { $productIds = array(); if (Mage::registry('current_product')) { $productIds[] = Mage::registry('current_product')->getId(); } return $productIds; } }