| 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/Checkout/Block/Cart/ |
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_Checkout
* @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)
*/
/**
* Shopping cart abstract block
*
* @category Mage
* @package Mage_Checkout
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class Mage_Checkout_Block_Cart_Abstract extends Mage_Core_Block_Template
{
protected $_customer = null;
protected $_checkout = null;
protected $_quote = null;
protected $_totals;
protected $_itemRenders = array();
public function __construct()
{
parent::__construct();
$this->addItemRender('default', 'checkout/cart_item_renderer', 'checkout/cart/item/default.phtml');
}
/**
* Add renderer for item product type
*
* @param string $productType
* @param string $blockType
* @param string $template
* @return Mage_Checkout_Block_Cart_Abstract
*/
public function addItemRender($productType, $blockType, $template)
{
$this->_itemRenders[$productType] = array(
'block' => $blockType,
'template' => $template,
'blockInstance' => null
);
return $this;
}
/**
* Get renderer information by product type code
*
* @deprecated please use getItemRendererInfo() method instead
* @see getItemRendererInfo()
* @param string $type
* @return array
*/
public function getItemRender($type)
{
return $this->getItemRendererInfo();
}
/**
* Get renderer information by product type code
*
* @param string $type
* @return array
*/
public function getItemRendererInfo($type)
{
if (isset($this->_itemRenders[$type])) {
return $this->_itemRenders[$type];
}
return $this->_itemRenders['default'];
}
/**
* Get renderer block instance by product type code
*
* @param string $type
* @return array
*/
public function getItemRenderer($type)
{
if (!isset($this->_itemRenders[$type])) {
$type = 'default';
}
if (is_null($this->_itemRenders[$type]['blockInstance'])) {
$this->_itemRenders[$type]['blockInstance'] = $this->getLayout()
->createBlock($this->_itemRenders[$type]['block'])
->setTemplate($this->_itemRenders[$type]['template'])
->setRenderedBlock($this);
}
return $this->_itemRenders[$type]['blockInstance'];
}
/**
* Get logged in customer
*
* @return Mage_Customer_Model_Customer
*/
public function getCustomer()
{
if (null === $this->_customer) {
$this->_customer = Mage::getSingleton('customer/session')->getCustomer();
}
return $this->_customer;
}
/**
* Get checkout session
*
* @return Mage_Checkout_Model_session
*/
public function getCheckout()
{
if (null === $this->_checkout) {
$this->_checkout = Mage::getSingleton('checkout/session');
}
return $this->_checkout;
}
/**
* Get active quote
*
* @return Mage_Sales_Model_Quote
*/
public function getQuote()
{
if (null === $this->_quote) {
$this->_quote = $this->getCheckout()->getQuote();
}
return $this->_quote;
}
/**
* Get all cart items
*
* @return array
*/
public function getItems()
{
return $this->getQuote()->getAllVisibleItems();
}
/**
* Get item row html
*
* @param Mage_Sales_Model_Quote_Item $item
* @return string
*/
public function getItemHtml(Mage_Sales_Model_Quote_Item $item)
{
$renderer = $this->getItemRenderer($item->getProductType())->setItem($item);
return $renderer->toHtml();
}
public function getTotals()
{
return $this->getTotalsCache();
}
public function getTotalsCache()
{
if (empty($this->_totals)) {
$this->_totals = $this->getQuote()->getTotals();
}
return $this->_totals;
}
}