| 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/ |
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 block
*
* @category Mage
* @package Mage_Checkout
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Checkout_Block_Cart extends Mage_Checkout_Block_Cart_Abstract
{
/**
* Prepare Quote Item Product URLs
*
*/
public function __construct()
{
parent::__construct();
// prepare cart items URLs
$products = array();
/* @var $item Mage_Sales_Model_Quote_Item */
foreach ($this->getItems() as $item) {
$product = $item->getProduct();
$option = $item->getOptionByCode('product_type');
if ($option) {
$product = $option->getProduct();
}
if ($item->getStoreId() != Mage::app()->getStore()->getId()
&& !$item->getRedirectUrl()
&& !$product->isVisibleInSiteVisibility())
{
$products[$product->getId()] = $item->getStoreId();
}
}
if ($products) {
$products = Mage::getResourceSingleton('catalog/url')
->getRewriteByProductStore($products);
foreach ($this->getItems() as $item) {
$product = $item->getProduct();
$option = $item->getOptionByCode('product_type');
if ($option) {
$product = $option->getProduct();
}
if (isset($products[$product->getId()])) {
$object = new Varien_Object($products[$product->getId()]);
$item->getProduct()->setUrlDataObject($object);
}
}
}
}
public function chooseTemplate()
{
if ($this->getQuote()->getItemsCount()) {
$this->setTemplate($this->getCartTemplate());
} else {
$this->setTemplate($this->getEmptyTemplate());
}
}
public function hasError()
{
return $this->getQuote()->getHasError();
}
public function getItemsSummaryQty()
{
return $this->getQuote()->getItemsSummaryQty();
}
public function isWishlistActive()
{
$isActive = $this->_getData('is_wishlist_active');
if ($isActive === null) {
$isActive = Mage::getStoreConfig('wishlist/general/active') && Mage::getSingleton('customer/session')->isLoggedIn();
$this->setIsWishlistActive($isActive);
}
return $isActive;
}
public function getCheckoutUrl()
{
return $this->getUrl('checkout/onepage', array('_secure'=>true));
}
public function getContinueShoppingUrl()
{
$url = $this->getData('continue_shopping_url');
if (is_null($url)) {
$url = Mage::getSingleton('checkout/session')->getContinueShoppingUrl(true);
if (!$url) {
$url = Mage::getUrl();
}
$this->setData('continue_shopping_url', $url);
}
return $url;
}
public function getIsVirtual()
{
return $this->helper('checkout/cart')->getIsVirtualQuote();
}
/**
* Return list of available checkout methods
*
* @param string $nameInLayout Container block alias in layout
* @return array
*/
public function getMethods($nameInLayout)
{
if ($this->getChild($nameInLayout) instanceof Mage_Core_Block_Abstract) {
return $this->getChild($nameInLayout)->getSortedChildren();
}
return array();
}
/**
* Return HTML of checkout method (link, button etc.)
*
* @param string $name Block name in layout
* @return string
*/
public function getMethodHtml($name)
{
$block = $this->getLayout()->getBlock($name);
if (!$block) {
Mage::throwException(Mage::helper('checkout')->__('Invalid method: %s', $name));
}
return $block->toHtml();
}
}