/app/code/core/Mage/Reports/Model/Product/Index/Compared.php
https://bitbucket.org/jokusafet/magento2 · PHP · 87 lines · 23 code · 8 blank · 56 comment · 2 complexity · 6de88efea4920951d5f78fda9087c1b0 MD5 · raw file
- <?php
- /**
- * Magento
- *
- * NOTICE OF LICENSE
- *
- * This source file is subject to the Open Software License (OSL 3.0)
- * that is bundled with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://opensource.org/licenses/osl-3.0.php
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@magentocommerce.com so we can send you a copy immediately.
- *
- * DISCLAIMER
- *
- * Do not edit or add to this file if you wish to upgrade Magento to newer
- * versions in the future. If you wish to customize Magento for your
- * needs please refer to http://www.magentocommerce.com for more information.
- *
- * @category Mage
- * @package Mage_Reports
- * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com)
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- */
- /**
- * Catalog Compared Product Index Model
- *
- * @method Mage_Reports_Model_Resource_Product_Index_Compared _getResource()
- * @method Mage_Reports_Model_Resource_Product_Index_Compared getResource()
- * @method Mage_Reports_Model_Product_Index_Compared setVisitorId(int $value)
- * @method Mage_Reports_Model_Product_Index_Compared setCustomerId(int $value)
- * @method int getProductId()
- * @method Mage_Reports_Model_Product_Index_Compared setProductId(int $value)
- * @method Mage_Reports_Model_Product_Index_Compared setStoreId(int $value)
- * @method string getAddedAt()
- * @method Mage_Reports_Model_Product_Index_Compared setAddedAt(string $value)
- *
- * @category Mage
- * @package Mage_Reports
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Mage_Reports_Model_Product_Index_Compared extends Mage_Reports_Model_Product_Index_Abstract
- {
- /**
- * Cache key name for Count of product index
- *
- * @var string
- */
- protected $_countCacheKey = 'product_index_compared_count';
- /**
- * Initialize resource model
- *
- */
- protected function _construct()
- {
- $this->_init('Mage_Reports_Model_Resource_Product_Index_Compared');
- }
- /**
- * Retrieve Exclude Product Ids List for Collection
- *
- * @return array
- */
- public function getExcludeProductIds()
- {
- $productIds = array();
- /* @var $helper Mage_Catalog_Helper_Product_Compare */
- $helper = Mage::helper('Mage_Catalog_Helper_Product_Compare');
- if ($helper->hasItems()) {
- foreach ($helper->getItemCollection() as $_item) {
- $productIds[] = $_item->getEntityId();
- }
- }
- if (Mage::registry('current_product')) {
- $productIds[] = Mage::registry('current_product')->getId();
- }
- return array_unique($productIds);
- }
- }