89 lines
3.1 KiB
PHP
89 lines
3.1 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* 2007-2011 PrestaShop
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Academic Free License (AFL 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/afl-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@prestashop.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* DISCLAIMER
|
||
|
*
|
||
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
|
* versions in the future. If you wish to customize PrestaShop for your
|
||
|
* needs please refer to http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author PrestaShop SA <contact@prestashop.com>
|
||
|
* @copyright 2007-2011 PrestaShop SA
|
||
|
* @version Release: $Revision: 6594 $
|
||
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||
|
* International Registered Trademark & Property of PrestaShop SA
|
||
|
*/
|
||
|
|
||
|
/* SSL Management */
|
||
|
$useSSL = true;
|
||
|
|
||
|
require_once(dirname(__FILE__).'/../../config/config.inc.php');
|
||
|
require_once(dirname(__FILE__).'/../../header.php');
|
||
|
require_once(dirname(__FILE__).'/WishList.php');
|
||
|
|
||
|
$token = Tools::getValue('token');
|
||
|
if (empty($token) === false)
|
||
|
{
|
||
|
$wishlist = WishList::getByToken($token);
|
||
|
if (empty($result) === true || $result === false)
|
||
|
$errors[] = Tools::displayError('Invalid wishlist token');
|
||
|
WishList::refreshWishList($wishlist['id_wishlist']);
|
||
|
$products = WishList::getProductByIdCustomer((int)($wishlist['id_wishlist']), (int)($wishlist['id_customer']), (int)($cookie->id_lang), null, true);
|
||
|
for ($i = 0; $i < sizeof($products); ++$i)
|
||
|
{
|
||
|
$obj = new Product((int)($products[$i]['id_product']), false, (int)($cookie->id_lang));
|
||
|
if (!Validate::isLoadedObject($obj))
|
||
|
continue;
|
||
|
else
|
||
|
{
|
||
|
if ($products[$i]['id_product_attribute'] != 0)
|
||
|
{
|
||
|
$combination_imgs = $obj->getCombinationImages((int)($cookie->id_lang));
|
||
|
$products[$i]['cover'] = $obj->id.'-'.$combination_imgs[$products[$i]['id_product_attribute']][0]['id_image'];
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$images = $obj->getImages((int)($cookie->id_lang));
|
||
|
foreach ($images AS $k => $image)
|
||
|
{
|
||
|
if ($image['cover'])
|
||
|
{
|
||
|
$products[$i]['cover'] = $obj->id.'-'.$image['id_image'];
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
if (!isset($products[$i]['cover']))
|
||
|
$products[$i]['cover'] = Language::getIsoById((int)($cookie->id_lang)).'-default';
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
WishList::incCounter((int)($wishlist['id_wishlist']));
|
||
|
$ajax = Configuration::get('PS_BLOCK_CART_AJAX');
|
||
|
$smarty->assign(array (
|
||
|
'current_wishlist' => $wishlist,
|
||
|
'token' => $token,
|
||
|
'ajax' => ((isset($ajax) AND (int)($ajax) == 1) ? '1' : '0'),
|
||
|
'wishlists' => WishList::getByIdCustomer((int)($wishlist['id_customer'])),
|
||
|
'products' => $products));
|
||
|
}
|
||
|
|
||
|
if (Tools::file_exists_cache(_PS_THEME_DIR_.'modules/blockwishlist/view.tpl'))
|
||
|
$smarty->display(_PS_THEME_DIR_.'modules/blockwishlist/view.tpl');
|
||
|
elseif (Tools::file_exists_cache(dirname(__FILE__).'/view.tpl'))
|
||
|
$smarty->display(dirname(__FILE__).'/view.tpl');
|
||
|
else
|
||
|
echo Tools::displayError('No template found');
|
||
|
|
||
|
require(dirname(__FILE__).'/../../footer.php');
|