| 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)
*/
/**
* Wishlist sidebar block
*
* @category Mage
* @package Mage_Checkout
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Checkout_Block_Cart_Sidebar extends Mage_Checkout_Block_Cart_Abstract
{
const XML_PATH_CHECKOUT_SIDEBAR_COUNT = 'checkout/sidebar/count';
/**
* Class constructor
*/
public function __construct()
{
parent::__construct();
$this->addItemRender('default', 'checkout/cart_item_renderer', 'checkout/cart/sidebar/default.phtml');
}
/**
* Retrieve count of display recently added items
*
* @return int
*/
public function getItemCount()
{
$count = $this->getData('item_count');
if (is_null($count)) {
$count = Mage::getStoreConfig(self::XML_PATH_CHECKOUT_SIDEBAR_COUNT);
$this->setData('item_count', $count);
}
return $count;
}
/**
* Get array of last added items
*
* @return array
*/
public function getRecentItems($count = null)
{
if ($count === null) {
$count = $this->getItemCount();
}
$items = array();
if (!$this->getSummaryCount()) {
return $items;
}
$i = 0;
$allItems = array_reverse($this->getItems());
foreach ($allItems as $item) {
/* @var $item Mage_Sales_Model_Quote_Item */
if (!$item->getProduct()->isVisibleInSiteVisibility()) {
$productId = $item->getProduct()->getId();
$products = Mage::getResourceSingleton('catalog/url')
->getRewriteByProductStore(array($productId => $item->getStoreId()));
if (!isset($products[$productId])) {
continue;
}
$urlDataObject = new Varien_Object($products[$productId]);
$item->getProduct()->setUrlDataObject($urlDataObject);
}
$items[] = $item;
if (++$i == $count) {
break;
}
}
return $items;
}
/**
* Get shopping cart subtotal.
*
* It will include tax, if required by config settings.
*
* @param bool $skipTax flag for getting price with tax or not. Ignored in case when we display just subtotal incl.tax
* @return decimal
*/
public function getSubtotal($skipTax = true)
{
$subtotal = 0;
$totals = $this->getTotals();
$config = Mage::getSingleton('tax/config');
if (isset($totals['subtotal'])) {
if ($config->displayCartSubtotalBoth()) {
if ($skipTax) {
$subtotal = $totals['subtotal']->getValueExclTax();
} else {
$subtotal = $totals['subtotal']->getValueInclTax();
}
} elseif($config->displayCartSubtotalInclTax()) {
$subtotal = $totals['subtotal']->getValueInclTax();
} else {
$subtotal = $totals['subtotal']->getValue();
if (!$skipTax && isset($totals['tax'])) {
$subtotal+= $totals['tax']->getValue();
}
}
}
return $subtotal;
}
/**
* Get subtotal, including tax.
* Will return > 0 only if appropriate config settings are enabled.
*
* @return decimal
*/
public function getSubtotalInclTax()
{
if (!Mage::getSingleton('tax/config')->displayCartSubtotalBoth()) {
return 0;
}
return $this->getSubtotal(false);
}
/**
* Add tax to amount
*
* @param float $price
* @param bool $exclShippingTax
* @return float
*/
private function _addTax($price, $exclShippingTax=true) {
$totals = $this->getTotals();
if (isset($totals['tax'])) {
if ($exclShippingTax) {
$price += $totals['tax']->getValue()-$this->_getShippingTaxAmount();
} else {
$price += $totals['tax']->getValue();
}
}
return $price;
}
/**
* Get shipping tax amount
*
* @return float
*/
protected function _getShippingTaxAmount()
{
return $this->getQuote()->getShippingAddress()->getShippingTaxAmount();
}
/**
* Get shopping cart items qty based on configuration (summary qty or items qty)
*
* @return int | float
*/
public function getSummaryCount()
{
return Mage::getSingleton('checkout/cart')->getSummaryQty();
}
/**
* Get incl/excl tax label
*
* @param bool $flag
* @return string
*/
public function getIncExcTax($flag)
{
$text = Mage::helper('tax')->getIncExcText($flag);
return $text ? ' ('.$text.')' : '';
}
/**
* Check if one page checkout is available
*
* @return bool
*/
public function isPossibleOnepageCheckout()
{
return $this->helper('checkout')->canOnepageCheckout();
}
/**
* Get one page checkout page url
*
* @return bool
*/
public function getCheckoutUrl()
{
return $this->helper('checkout/url')->getCheckoutUrl();
}
/**
* Define if Shopping Cart Sidebar enabled
*
* @return bool
*/
public function getIsNeedToDisplaySideBar()
{
return (bool) Mage::app()->getStore()->getConfig('checkout/sidebar/display');
}
}