| Server IP : 213.186.33.4 / Your IP : 216.73.216.59 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/Wishlist/Controller/ |
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_Wishlist
* @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 Abstract Front Controller Action
*
* @category Mage
* @package Mage_Wishlist
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class Mage_Wishlist_Controller_Abstract extends Mage_Core_Controller_Front_Action
{
/**
* Retrieve current wishlist instance
*
* @return Mage_Wishlist_Model_Wishlist|false
*/
abstract protected function _getWishlist();
/**
* Add all items from wishlist to shopping cart
*
*/
public function allcartAction()
{
$wishlist = $this->_getWishlist();
if (!$wishlist) {
$this->_forward('noRoute');
return ;
}
$isOwner = $wishlist->isOwner(Mage::getSingleton('customer/session')->getCustomerId());
$messages = array();
$addedItems = array();
$notSalable = array();
$hasOptions = array();
$isGrouped = array();
$cart = Mage::getSingleton('checkout/cart');
$collection = $wishlist->getItemCollection();
foreach ($collection as $item) {
/** @var Mage_Wishlist_Model_Item */
try {
if ($item->addToCart($cart, $isOwner)) {
$addedItems[] = $item->getProduct();
}
} catch (Mage_Core_Exception $e) {
if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_NOT_SALABLE) {
$notSalable[] = $item;
} else if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_HAS_REQUIRED_OPTIONS) {
$hasOptions[] = $item;
} else if ($e->getCode() == Mage_Wishlist_Model_Item::EXCEPTION_CODE_IS_GROUPED_PRODUCT) {
$isGrouped[] = $item;
} else {
$messages[] = $e->getMessage();
}
} catch (Exception $e) {
Mage::logException($e);
$messages[] = Mage::helper('wishlist')->__('Cannot add the item to shopping cart.');
}
}
if ($isOwner) {
$indexUrl = Mage::helper('wishlist')->getListUrl();
} else {
$indexUrl = Mage::getUrl('wishlist/shared', array('code' => $wishlist->getSharingCode()));
}
if (Mage::helper('checkout/cart')->getShouldRedirectToCart()) {
$redirectUrl = Mage::helper('checkout/cart')->getCartUrl();
} else if ($this->_getRefererUrl()) {
$redirectUrl = $this->_getRefererUrl();
} else {
$redirectUrl = $indexUrl;
}
if ($notSalable) {
$products = array();
foreach ($notSalable as $item) {
$products[] = '"' . $item->getProduct()->getName() . '"';
}
$messages[] = Mage::helper('wishlist')->__('Unable to add the following product(s) to shopping cart: %s.', join(', ', $products));
}
if ($isGrouped) {
$products = array();
foreach ($isGrouped as $item) {
$products[] = '"' . $item->getProduct()->getName() . '"';
}
$messages[] = Mage::helper('wishlist')->__('Product(s) %s are grouped. Each of them can be added to cart separately only.', join(', ', $products));
}
if ($hasOptions) {
$products = array();
foreach ($hasOptions as $item) {
$products[] = '"' . $item->getProduct()->getName() . '"';
}
$messages[] = Mage::helper('wishlist')->__('Product(s) %s have required options. Each of them can be added to cart separately only.', join(', ', $products));
}
if ($messages) {
$isMessageSole = (count($messages) == 1);
if ($isMessageSole && count($hasOptions) == 1) {
$item = $hasOptions[0];
if ($isOwner) {
$item->delete();
}
$redirectUrl = $item->getProductUrl();
} elseif ($isMessageSole && count($isGrouped) == 1) {
$item = $isGrouped[0];
if ($isOwner) {
$item->delete();
}
$redirectUrl = $item->getProductUrl();
} else {
$wishlistSession = Mage::getSingleton('wishlist/session');
foreach ($messages as $message) {
$wishlistSession->addError($message);
}
$redirectUrl = $indexUrl;
}
}
if ($addedItems) {
// save wishlist model for setting date of last update
try {
$wishlist->save();
}
catch (Exception $e) {
Mage::getSingleton('wishlist/session')->addError($this->__('Cannot update wishlist'));
$redirectUrl = $indexUrl;
}
$products = array();
foreach ($addedItems as $product) {
$products[] = '"' . $product->getName() . '"';
}
Mage::getSingleton('checkout/session')->addSuccess(
Mage::helper('wishlist')->__('%d product(s) have been added to shopping cart: %s.', count($addedItems), join(', ', $products))
);
}
// save cart and collect totals
$cart->save()->getQuote()->collectTotals();
Mage::helper('wishlist')->calculate();
$this->_redirectUrl($redirectUrl);
}
}