| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Catalog/Model/Product/Compare/ |
Upload 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_Catalog
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Catalog Compare Item Model
*
* @category Mage
* @package Mage_Catalog
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Catalog_Model_Product_Compare_Item extends Mage_Core_Model_Abstract
{
/**
* Prefix of model events names
*
* @var string
*/
protected $_eventPrefix = 'catalog_compare_item';
/**
* Parameter name in event
*
* In observe method you can use $observer->getEvent()->getItem() in this case
*
* @var string
*/
protected $_eventObject = 'item';
/**
* Initialize resourse model
*
*/
protected function _construct()
{
$this->_init('catalog/product_compare_item');
}
/**
* Retrieve Resource instance
*
* @return Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Compare_Item
*/
protected function _getResource()
{
return parent::_getResource();
}
/**
* Set current store before save
*
* @return Mage_Catalog_Model_Product_Compare_Item
*/
protected function _beforeSave()
{
parent::_beforeSave();
if (!$this->hasStoreId()) {
$this->setStoreId(Mage::app()->getStore()->getId());
}
return $this;
}
/**
* Add customer data from customer object
*
* @param Mage_Customer_Model_Customer $customer
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function addCustomerData(Mage_Customer_Model_Customer $customer)
{
$this->setCustomerId($customer->getId());
return $this;
}
/**
* Set visitor
*
* @param int $visitorId
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function addVisitorId($visitorId)
{
$this->setVisitorId($visitorId);
return $this;
}
/**
* Load compare item by product
*
* @param mixed $product
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function loadByProduct($product)
{
$this->_getResource()->loadByProduct($this, $product);
return $this;
}
/**
* Set product data
*
* @param mixed $product
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function addProductData($product)
{
if ($product instanceof Mage_Catalog_Model_Product) {
$this->setProductId($product->getId());
}
else if(intval($product)) {
$this->setProductId(intval($product));
}
return $this;
}
/**
* Retrieve data for save
*
* @return array
*/
public function getDataForSave()
{
$data = array();
$data['customer_id'] = $this->getCustomerId();
$data['visitor_id'] = $this->getVisitorId();
$data['product_id'] = $this->getProductId();
return $data;
}
/**
* Customer login bind process
*
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function bindCustomerLogin()
{
$this->_getResource()->updateCustomerFromVisitor($this);
Mage::helper('catalog/product_compare')->calculate();
return $this;
}
/**
* Customer logout bind process
*
* @param Varien_Event_Observer $observer
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function bindCustomerLogout(Varien_Event_Observer $observer)
{
$this->_getResource()->purgeVisitorByCustomer($this);
Mage::helper('catalog/product_compare')->calculate(true);
return $this;
}
/**
* Clean compare items
*
* @return Mage_Catalog_Model_Product_Compare_Item
*/
public function clean()
{
$this->_getResource()->clean($this);
return $this;
}
/**
* Retrieve Customer Id if loggined
*
* @return int
*/
public function getCustomerId()
{
if (!$this->hasData('customer_id')) {
$customerId = Mage::getSingleton('customer/session')->getCustomerId();
$this->setData('customer_id', $customerId);
}
return $this->getData('customer_id');
}
/**
* Retrieve Visitor Id
*
* @return int
*/
public function getVisitorId()
{
if (!$this->hasData('visitor_id')) {
$visitorId = Mage::getSingleton('log/visitor')->getId();
$this->setData('visitor_id', $visitorId);
}
return $this->getData('visitor_id');
}
}