[*] MO : change calls method Tools::displayError() by $name_module->l() && Translations

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15094 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lLefevre
2012-05-09 10:06:23 +00:00
parent 8947a4be80
commit eccb5b7da2
60 changed files with 336 additions and 278 deletions
+8 -5
View File
@@ -37,6 +37,9 @@ $errors = array();
Tools::displayFileAsDeprecated();
// Instance of module class for translations
$module = new BlockWishList();
if ($context->customer->isLogged())
{
$add = Tools::getIsset('add');
@@ -48,14 +51,14 @@ if ($context->customer->isLogged())
{
if (Configuration::get('PS_TOKEN_ACTIVATED') == 1 AND
strcmp(Tools::getToken(), Tools::getValue('token')))
$errors[] = Tools::displayError('Invalid token');
$errors[] = $module->l('Invalid token', 'mywishlist');
if (!sizeof($errors))
{
$name = Tools::getValue('name');
if (empty($name))
$errors[] = Tools::displayError('You must specify a name.');
$errors[] = $module->l('You must specify a name.', 'mywishlist');
if (WishList::isExistsByNameForUser($name))
$errors[] = Tools::displayError('This name is already used by another list.');
$errors[] = $module->l('This name is already used by another list.', 'mywishlist');
if(!sizeof($errors))
{
@@ -82,7 +85,7 @@ if ($context->customer->isLogged())
if (Validate::isLoadedObject($wishlist))
$wishlist->delete();
else
$errors[] = Tools::displayError('Cannot delete this wishlist');
$errors[] = $module->l('Cannot delete this wishlist', 'mywishlist');
}
$context->smarty->assign('wishlists', WishList::getByIdCustomer($context->customer->id));
$context->smarty->assign('nbProducts', WishList::getInfosByIdCustomer($context->customer->id));
@@ -102,7 +105,7 @@ if (Tools::file_exists_cache(_PS_THEME_DIR_.'modules/blockwishlist/mywishlist.tp
elseif (Tools::file_exists_cache(dirname(__FILE__).'/views/templates/front/mywishlist.tpl'))
$context->smarty->display(dirname(__FILE__).'/views/templates/front/mywishlist.tpl');
else
echo Tools::displayError('No template found');
echo $module->l('No template found', 'mywishlist');
include(dirname(__FILE__).'/../../footer.php');