git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13573 b9a71923-0436-4b27-9f14-aed3839534dd
108 lines
4.0 KiB
PHP
108 lines
4.0 KiB
PHP
<?php
|
|
/*
|
|
* 2007-2012 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-2012 PrestaShop SA
|
|
* @version Release: $Revision: 7091 $
|
|
* @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;
|
|
|
|
include(dirname(__FILE__).'/../../config/config.inc.php');
|
|
include(dirname(__FILE__).'/../../header.php');
|
|
include_once(dirname(__FILE__).'/WishList.php');
|
|
|
|
$context = Context::getContext();
|
|
$errors = array();
|
|
|
|
if ($context->customer->isLogged())
|
|
{
|
|
$add = Tools::getIsset('add');
|
|
$add = (empty($add) === false ? 1 : 0);
|
|
$delete = Tools::getIsset('deleted');
|
|
$delete = (empty($delete) === false ? 1 : 0);
|
|
$id_wishlist = Tools::getValue('id_wishlist');
|
|
if (Tools::isSubmit('submitWishlist'))
|
|
{
|
|
if (Configuration::get('PS_TOKEN_ACTIVATED') == 1 AND
|
|
strcmp(Tools::getToken(), Tools::getValue('token')))
|
|
$errors[] = Tools::displayError('Invalid token');
|
|
if (!sizeof($errors))
|
|
{
|
|
$name = Tools::getValue('name');
|
|
if (empty($name))
|
|
$errors[] = Tools::displayError('You must specify a name.');
|
|
if (WishList::isExistsByNameForUser($name))
|
|
$errors[] = Tools::displayError('This name is already used by another list.');
|
|
|
|
if(!sizeof($errors))
|
|
{
|
|
$wishlist = new WishList();
|
|
$wishlist->name = $name;
|
|
$wishlist->id_customer = (int)$context->customer->id;
|
|
list($us, $s) = explode(' ', microtime());
|
|
srand($s * $us);
|
|
$wishlist->token = strtoupper(substr(sha1(uniqid(rand(), true)._COOKIE_KEY_.$context->customer->id), 0, 16));
|
|
$wishlist->add();
|
|
Mail::Send($context->language->id, 'wishlink', Mail::l('Your wishlist\'s link', $context->language->id),
|
|
array(
|
|
'{wishlist}' => $wishlist->name,
|
|
'{message}' => Tools::getProtocol().htmlentities($_SERVER['HTTP_HOST'], ENT_COMPAT, 'UTF-8').__PS_BASE_URI__.'modules/blockwishlist/view.php?token='.$wishlist->token),
|
|
$context->customer->email, $context->customer->firstname.' '.$context->customer->lastname, NULL, strval(Configuration::get('PS_SHOP_NAME')), NULL, NULL, dirname(__FILE__).'/mails/');
|
|
}
|
|
}
|
|
}
|
|
else if ($add)
|
|
WishList::addCardToWishlist($context->customer->id, Tools::getValue('id_wishlist'), $context->language->id);
|
|
else if ($delete AND empty($id_wishlist) === false)
|
|
{
|
|
$wishlist = new WishList((int)($id_wishlist));
|
|
if (Validate::isLoadedObject($wishlist))
|
|
$wishlist->delete();
|
|
else
|
|
$errors[] = Tools::displayError('Cannot delete this wishlist');
|
|
}
|
|
$context->smarty->assign('wishlists', WishList::getByIdCustomer($context->customer->id));
|
|
$context->smarty->assign('nbProducts', WishList::getInfosByIdCustomer($context->customer->id));
|
|
}
|
|
else
|
|
{
|
|
Tools::redirect('index.php?controller=authentication&back=modules/blockwishlist/mywishlist.php');
|
|
}
|
|
|
|
$context->smarty->assign(array(
|
|
'id_customer' => (int)$context->customer->id,
|
|
'errors' => $errors
|
|
));
|
|
|
|
if (Tools::file_exists_cache(_PS_THEME_DIR_.'modules/blockwishlist/mywishlist.tpl'))
|
|
$context->smarty->display(_PS_THEME_DIR_.'modules/blockwishlist/mywishlist.tpl');
|
|
elseif (Tools::file_exists_cache(dirname(__FILE__).'/mywishlist.tpl'))
|
|
$context->smarty->display(dirname(__FILE__).'/mywishlist.tpl');
|
|
else
|
|
echo Tools::displayError('No template found');
|
|
|
|
include(dirname(__FILE__).'/../../footer.php');
|
|
|
|
|