537 lines
21 KiB
PHP
Executable File
537 lines
21 KiB
PHP
Executable File
<?php
|
|
|
|
class AuthController extends AuthControllerCore
|
|
{
|
|
/**
|
|
* @Override (si l'on est déjà co, redirection sur le back s'il y a)
|
|
*/
|
|
public function init()
|
|
{
|
|
FrontController::init();
|
|
|
|
if (!Tools::getIsset('step') && $this->context->customer->isLogged() && !$this->ajax) {
|
|
if (($back = Tools::getValue('back')) && $back == Tools::secureReferrer($back)) {
|
|
Tools::redirect(html_entity_decode($back));
|
|
}
|
|
Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : 'my-account'));
|
|
}
|
|
|
|
if (Tools::getValue('create_account'))
|
|
$this->create_account = true;
|
|
}
|
|
|
|
/**
|
|
* Process submit on an account
|
|
*/
|
|
protected function processSubmitAccount()
|
|
{
|
|
Hook::exec('actionBeforeSubmitAccount');
|
|
$this->create_account = true;
|
|
if (Tools::isSubmit('submitAccount'))
|
|
$this->context->smarty->assign('email_create', 1);
|
|
// New Guest customer
|
|
if (!Tools::getValue('is_new_customer', 1) && !Configuration::get('PS_GUEST_CHECKOUT_ENABLED'))
|
|
$this->errors[] = Tools::displayError('You cannot create a guest account..');
|
|
if (!Tools::getValue('is_new_customer', 1))
|
|
$_POST['passwd'] = md5(time()._COOKIE_KEY_);
|
|
if (isset($_POST['guest_email']) && $_POST['guest_email'])
|
|
$_POST['email'] = $_POST['guest_email'];
|
|
// Checked the user address in case he changed his email address
|
|
if (Validate::isEmail($email = Tools::getValue('email')) && !empty($email))
|
|
if (Customer::customerExists($email))
|
|
$this->errors[] = Tools::displayError('An account using this email address has already been registered.', false);
|
|
if(!isset($_POST['check_b2b'])) {
|
|
$this->errors[] = Tools::displayError('You have to choose between Pro or Part.', false);
|
|
}
|
|
if(!isset($_POST['newsletter'])) {
|
|
$this->errors[] = Tools::displayError('Vous devez accepter les conditions générales de ventes.', false);
|
|
}
|
|
// Preparing customer
|
|
$customer = new Customer();
|
|
$lastnameAddress = Tools::getValue('lastname');
|
|
$firstnameAddress = Tools::getValue('firstname');
|
|
$_POST['lastname'] = Tools::getValue('customer_lastname');
|
|
$_POST['firstname'] = Tools::getValue('customer_firstname');
|
|
$addresses_types = array('address');
|
|
if (!Configuration::get('PS_ORDER_PROCESS_TYPE') && Configuration::get('PS_GUEST_CHECKOUT_ENABLED') && Tools::getValue('invoice_address'))
|
|
$addresses_types[] = 'address_invoice';
|
|
|
|
$error_phone = false;
|
|
if (Configuration::get('PS_ONE_PHONE_AT_LEAST'))
|
|
{
|
|
if (Tools::isSubmit('submitGuestAccount') || !Tools::getValue('is_new_customer'))
|
|
{
|
|
if (!Tools::getValue('phone') && !Tools::getValue('phone_mobile'))
|
|
$error_phone = true;
|
|
}
|
|
elseif (((Configuration::get('PS_REGISTRATION_PROCESS_TYPE') && Configuration::get('PS_ORDER_PROCESS_TYPE'))
|
|
|| (Configuration::get('PS_ORDER_PROCESS_TYPE') && !Tools::getValue('email_create'))
|
|
|| (Configuration::get('PS_REGISTRATION_PROCESS_TYPE') && Tools::getValue('email_create')))
|
|
&& (!Tools::getValue('phone') && !Tools::getValue('phone_mobile')))
|
|
$error_phone = true;
|
|
}
|
|
|
|
if ($error_phone)
|
|
$this->errors[] = Tools::displayError('You must register at least one phone number.');
|
|
|
|
$this->errors = array_unique(array_merge($this->errors, $customer->validateController()));
|
|
|
|
// Check the requires fields which are settings in the BO
|
|
$this->errors = $this->errors + $customer->validateFieldsRequiredDatabase();
|
|
|
|
if (!Configuration::get('PS_REGISTRATION_PROCESS_TYPE') && !$this->ajax && !Tools::isSubmit('submitGuestAccount'))
|
|
{
|
|
if (!count($this->errors))
|
|
{
|
|
|
|
if (Tools::isSubmit('newsletter')) {
|
|
$this->processCustomerNewsletter($customer);
|
|
}
|
|
|
|
$customer->firstname = Tools::ucwords($customer->firstname);
|
|
$customer->birthday = (empty($_POST['years']) ? '' : (int)$_POST['years'].'-'.(int)$_POST['months'].'-'.(int)$_POST['days']);
|
|
if (!Validate::isBirthDate($customer->birthday))
|
|
$this->errors[] = Tools::displayError('Invalid date of birth.');
|
|
|
|
// New Guest customer
|
|
$customer->is_guest = (Tools::isSubmit('is_new_customer') ? !Tools::getValue('is_new_customer', 1) : 0);
|
|
$customer->active = 1;
|
|
|
|
if (!count($this->errors))
|
|
{
|
|
if ($customer->add())
|
|
{
|
|
if (!$customer->is_guest){
|
|
if (!$this->sendConfirmationMail($customer))
|
|
$this->errors[] = Tools::displayError('The email cannot be sent.');
|
|
|
|
/**
|
|
* @Override
|
|
*/
|
|
if ( Tools::getValue('check_b2b') ){
|
|
$groups = array(4);
|
|
$customer->id_default_group = 4;
|
|
$customer->cleanGroups();
|
|
$customer->addGroups($groups);
|
|
$customer->update();
|
|
$this->context->customer = $customer;
|
|
}
|
|
|
|
/**
|
|
* @Override
|
|
*/
|
|
if(Tools::getValue('tr') == 'affiliaton-adlead'
|
|
|| Tools::getValue('tr') == Configuration::get('CONF_TRACKING_ADLEAD')
|
|
|| Tools::getValue('referralprogram') == 'campagne1+adlead@privilegedemarque.com')
|
|
{
|
|
$customer->last_adleadlogin = date('Y-m-d H:i:s');
|
|
$customer->save();
|
|
$this->context->customer = $customer;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* @Override le 04-02-2015
|
|
* Création d'un cookie pour signaler déjà venu ou connecté ou déjà inscrit
|
|
*/
|
|
$this->context->cookie->isAccountExists = "1";
|
|
|
|
$this->updateContext($customer);
|
|
|
|
$this->context->cart->update();
|
|
Hook::exec('actionCustomerAccountAdd', array(
|
|
'_POST' => $_POST,
|
|
'newCustomer' => $customer
|
|
));
|
|
if ($this->ajax)
|
|
{
|
|
$return = array(
|
|
'hasError' => !empty($this->errors),
|
|
'errors' => $this->errors,
|
|
'isSaved' => true,
|
|
'id_customer' => (int)$this->context->cookie->id_customer,
|
|
'id_address_delivery' => $this->context->cart->id_address_delivery,
|
|
'id_address_invoice' => $this->context->cart->id_address_invoice,
|
|
'token' => Tools::getToken(false)
|
|
);
|
|
die(Tools::jsonEncode($return));
|
|
}
|
|
|
|
if (($back = Tools::getValue('back')) && $back == Tools::secureReferrer($back))
|
|
Tools::redirect(html_entity_decode($back));
|
|
if(strpos($back, 'modules') !== false && strpos($back, 'modules') === 0){
|
|
$explode = explode('/', $back);
|
|
$controller = explode('-', $explode[2]);
|
|
Tools::redirect(Context::getContext()->link->getModuleLink($explode[1],str_replace('.php', '', $controller[1])));
|
|
}
|
|
// redirection: if cart is not empty : redirection to the cart
|
|
if (count($this->context->cart->getProducts(true)) > 0)
|
|
Tools::redirect('index.php?controller=order&multi-shipping='.(int)Tools::getValue('multi-shipping'));
|
|
// else : redirection to the account
|
|
else
|
|
{
|
|
Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : ''));
|
|
}
|
|
}
|
|
else
|
|
$this->errors[] = Tools::displayError('An error occurred while creating your account.');
|
|
}
|
|
}
|
|
|
|
}
|
|
else // if registration type is in one step, we save the address
|
|
{
|
|
$_POST['lastname'] = $lastnameAddress;
|
|
$_POST['firstname'] = $firstnameAddress;
|
|
$post_back = $_POST;
|
|
// Preparing addresses
|
|
foreach($addresses_types as $addresses_type)
|
|
{
|
|
$$addresses_type = new Address();
|
|
$$addresses_type->id_customer = 1;
|
|
|
|
if ($addresses_type == 'address_invoice')
|
|
foreach($_POST as $key => &$post)
|
|
if (isset($_POST[$key.'_invoice']))
|
|
$post = $_POST[$key.'_invoice'];
|
|
|
|
$this->errors = array_unique(array_merge($this->errors, $$addresses_type->validateController()));
|
|
if ($addresses_type == 'address_invoice')
|
|
$_POST = $post_back;
|
|
|
|
if (!($country = new Country($$addresses_type->id_country)) || !Validate::isLoadedObject($country))
|
|
$this->errors[] = Tools::displayError('Country cannot be loaded with address->id_country');
|
|
|
|
if (!$country->active)
|
|
$this->errors[] = Tools::displayError('This country is not active.');
|
|
|
|
$postcode = Tools::getValue('postcode');
|
|
/* Check zip code format */
|
|
if ($country->zip_code_format && !$country->checkZipCode($postcode))
|
|
$this->errors[] = sprintf(Tools::displayError('The Zip/Postal code you\'ve entered is invalid. It must follow this format: %s'), str_replace('C', $country->iso_code, str_replace('N', '0', str_replace('L', 'A', $country->zip_code_format))));
|
|
elseif(empty($postcode) && $country->need_zip_code)
|
|
$this->errors[] = Tools::displayError('A Zip / Postal code is required.');
|
|
elseif ($postcode && !Validate::isPostCode($postcode))
|
|
$this->errors[] = Tools::displayError('The Zip / Postal code is invalid.');
|
|
|
|
if ($country->need_identification_number && (!Tools::getValue('dni') || !Validate::isDniLite(Tools::getValue('dni'))))
|
|
$this->errors[] = Tools::displayError('The identification number is incorrect or has already been used.');
|
|
elseif (!$country->need_identification_number)
|
|
$$addresses_type->dni = null;
|
|
|
|
if (Tools::isSubmit('submitAccount') || Tools::isSubmit('submitGuestAccount'))
|
|
if (!($country = new Country($$addresses_type->id_country, Configuration::get('PS_LANG_DEFAULT'))) || !Validate::isLoadedObject($country))
|
|
$this->errors[] = Tools::displayError('Country is invalid');
|
|
$contains_state = isset($country) && is_object($country) ? (int)$country->contains_states: 0;
|
|
$id_state = isset($$addresses_type) && is_object($$addresses_type) ? (int)$$addresses_type->id_state: 0;
|
|
if ((Tools::isSubmit('submitAccount')|| Tools::isSubmit('submitGuestAccount')) && $contains_state && !$id_state)
|
|
$this->errors[] = Tools::displayError('This country requires you to choose a State.');
|
|
}
|
|
}
|
|
|
|
if (!@checkdate(Tools::getValue('months'), Tools::getValue('days'), Tools::getValue('years')) && !(Tools::getValue('months') == '' && Tools::getValue('days') == '' && Tools::getValue('years') == ''))
|
|
$this->errors[] = Tools::displayError('Invalid date of birth');
|
|
|
|
if (!count($this->errors))
|
|
{
|
|
if (Customer::customerExists(Tools::getValue('email')))
|
|
$this->errors[] = Tools::displayError('An account using this email address has already been registered. Please enter a valid password or request a new one. ', false);
|
|
if (Tools::isSubmit('newsletter'))
|
|
$this->processCustomerNewsletter($customer);
|
|
|
|
$customer->birthday = (empty($_POST['years']) ? '' : (int)$_POST['years'].'-'.(int)$_POST['months'].'-'.(int)$_POST['days']);
|
|
if (!Validate::isBirthDate($customer->birthday))
|
|
$this->errors[] = Tools::displayError('Invalid date of birth');
|
|
|
|
if (!count($this->errors))
|
|
{
|
|
$customer->active = 1;
|
|
// New Guest customer
|
|
if (Tools::isSubmit('is_new_customer'))
|
|
$customer->is_guest = !Tools::getValue('is_new_customer', 1);
|
|
else
|
|
$customer->is_guest = 0;
|
|
if (!$customer->add())
|
|
$this->errors[] = Tools::displayError('An error occurred while creating your account.');
|
|
else
|
|
{
|
|
foreach($addresses_types as $addresses_type)
|
|
{
|
|
$$addresses_type->id_customer = (int)$customer->id;
|
|
if ($addresses_type == 'address_invoice')
|
|
foreach($_POST as $key => &$post)
|
|
if (isset($_POST[$key.'_invoice']))
|
|
$post = $_POST[$key.'_invoice'];
|
|
|
|
$this->errors = array_unique(array_merge($this->errors, $$addresses_type->validateController()));
|
|
if ($addresses_type == 'address_invoice')
|
|
$_POST = $post_back;
|
|
if (!count($this->errors) && (Configuration::get('PS_REGISTRATION_PROCESS_TYPE') || $this->ajax || Tools::isSubmit('submitGuestAccount')) && !$$addresses_type->add())
|
|
$this->errors[] = Tools::displayError('An error occurred while creating your address.');
|
|
}
|
|
if (!count($this->errors))
|
|
{
|
|
if (!$customer->is_guest)
|
|
{
|
|
$groups = array((int)Configuration::get('PS_CUSTOMER_GROUP'));
|
|
$pro_groups = array(4);
|
|
if ( Tools::getValue('check_b2b') )
|
|
$groups = array_merge($groups, $pro_groups);
|
|
$this->context->customer = $customer;
|
|
$customer->cleanGroups();
|
|
// we add the guest customer in the default customer group
|
|
$customer->addGroups($groups);
|
|
if (!$this->sendConfirmationMail($customer))
|
|
$this->errors[] = Tools::displayError('The email cannot be sent.');
|
|
}
|
|
else
|
|
{
|
|
$customer->cleanGroups();
|
|
// we add the guest customer in the guest customer group
|
|
$customer->addGroups(array((int)Configuration::get('PS_GUEST_GROUP')));
|
|
}
|
|
$this->updateContext($customer);
|
|
$this->context->cart->id_address_delivery = (int)Address::getFirstCustomerAddressId((int)$customer->id);
|
|
$this->context->cart->id_address_invoice = (int)Address::getFirstCustomerAddressId((int)$customer->id);
|
|
if (isset($address_invoice) && Validate::isLoadedObject($address_invoice))
|
|
$this->context->cart->id_address_invoice = (int)$address_invoice->id;
|
|
|
|
if ($this->ajax && Configuration::get('PS_ORDER_PROCESS_TYPE'))
|
|
{
|
|
$delivery_option = array((int)$this->context->cart->id_address_delivery => (int)$this->context->cart->id_carrier.',');
|
|
$this->context->cart->setDeliveryOption($delivery_option);
|
|
}
|
|
|
|
// If a logged guest logs in as a customer, the cart secure key was already set and needs to be updated
|
|
$this->context->cart->update();
|
|
|
|
// Avoid articles without delivery address on the cart
|
|
$this->context->cart->autosetProductAddress();
|
|
|
|
Hook::exec('actionCustomerAccountAdd', array(
|
|
'_POST' => $_POST,
|
|
'newCustomer' => $customer
|
|
));
|
|
if ($this->ajax)
|
|
{
|
|
$return = array(
|
|
'hasError' => !empty($this->errors),
|
|
'errors' => $this->errors,
|
|
'isSaved' => true,
|
|
'id_customer' => (int)$this->context->cookie->id_customer,
|
|
'id_address_delivery' => $this->context->cart->id_address_delivery,
|
|
'id_address_invoice' => $this->context->cart->id_address_invoice,
|
|
'token' => Tools::getToken(false)
|
|
);
|
|
die(Tools::jsonEncode($return));
|
|
}
|
|
// if registration type is in two steps, we redirect to register address
|
|
if (!Configuration::get('PS_REGISTRATION_PROCESS_TYPE') && !$this->ajax && !Tools::isSubmit('submitGuestAccount'))
|
|
{
|
|
Tools::redirect('index.php?controller=address');
|
|
}
|
|
|
|
if (($back = Tools::getValue('back')) && $back == Tools::secureReferrer($back))
|
|
{
|
|
Tools::redirect(html_entity_decode($back));
|
|
}
|
|
if(strpos($back, 'modules') !== false && strpos($back, 'modules') === 0){
|
|
$explode = explode('/', $back);
|
|
$controller = explode('-', $explode[2]);
|
|
Tools::redirect(Context::getContext()->link->getModuleLink($explode[1],str_replace('.php', '', $controller[1])));
|
|
}
|
|
|
|
// redirection: if cart is not empty : redirection to the cart
|
|
if (count($this->context->cart->getProducts(true)) > 0)
|
|
{
|
|
Tools::redirect('index.php?controller=order&multi-shipping='.(int)Tools::getValue('multi-shipping'));
|
|
}
|
|
// else : redirection to the account
|
|
else
|
|
{
|
|
Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : ''));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (count($this->errors))
|
|
{
|
|
//for retro compatibility to display guest account creation form on authentication page
|
|
if (Tools::getValue('submitGuestAccount'))
|
|
$_GET['display_guest_checkout'] = 1;
|
|
|
|
if (!Tools::getValue('is_new_customer'))
|
|
unset($_POST['passwd']);
|
|
if ($this->ajax)
|
|
{
|
|
$return = array(
|
|
'hasError' => !empty($this->errors),
|
|
'errors' => $this->errors,
|
|
'isSaved' => false,
|
|
'id_customer' => 0
|
|
);
|
|
die(Tools::jsonEncode($return));
|
|
}
|
|
$this->context->smarty->assign('account_error', $this->errors);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Process login
|
|
*/
|
|
protected function processSubmitLogin()
|
|
{
|
|
Hook::exec('actionBeforeAuthentication');
|
|
|
|
$passwd = trim(Tools::getValue('passwd'));
|
|
$email = trim(Tools::getValue('email'));
|
|
if (empty($email))
|
|
$this->errors[] = Tools::displayError('An email address required.');
|
|
elseif (!Validate::isEmail($email))
|
|
$this->errors[] = Tools::displayError('Invalid email address.');
|
|
elseif (empty($passwd))
|
|
$this->errors[] = Tools::displayError('Password is required.');
|
|
elseif (!Validate::isPasswd($passwd))
|
|
$this->errors[] = Tools::displayError('Invalid password.');
|
|
else
|
|
{
|
|
$customer = new Customer();
|
|
$authentication = $customer->getByEmail(trim($email), trim($passwd));
|
|
if (!$authentication || !$customer->id)
|
|
$this->errors[] = Tools::displayError('Authentication failed.');
|
|
else
|
|
{
|
|
$customer->addVisit();
|
|
if(Tools::getValue('tr') == 'affiliaton-adlead'
|
|
|| Tools::getValue('tr') == Configuration::get('CONF_TRACKING_ADLEAD')
|
|
|| Tools::getValue('referralprogram') == 'campagne1+adlead@privilegedemarque.com')
|
|
{
|
|
$customer->last_adleadlogin = date('Y-m-d H:i:s');
|
|
$customer->save();
|
|
}
|
|
|
|
$this->context->cookie->id_compare = isset($this->context->cookie->id_compare) ? $this->context->cookie->id_compare: CompareProduct::getIdCompareByIdCustomer($customer->id);
|
|
$this->context->cookie->id_customer = (int)($customer->id);
|
|
$this->context->cookie->customer_lastname = $customer->lastname;
|
|
$this->context->cookie->customer_firstname = $customer->firstname;
|
|
$this->context->cookie->logged = 1;
|
|
$customer->logged = 1;
|
|
$this->context->cookie->is_guest = $customer->isGuest();
|
|
$this->context->cookie->passwd = $customer->passwd;
|
|
$this->context->cookie->email = $customer->email;
|
|
|
|
/**
|
|
* @Override le 04-02-2015
|
|
* Création d'un cookie pour signaler déjà venu ou connecté ou déjà inscrit
|
|
*/
|
|
$this->context->cookie->isAccountExists = "1";
|
|
|
|
// Add customer to the context
|
|
$this->context->customer = $customer;
|
|
|
|
if (Configuration::get('PS_CART_FOLLOWING') && (empty($this->context->cookie->id_cart) || Cart::getNbProducts($this->context->cookie->id_cart) == 0) && $id_cart = (int)Cart::lastNoneOrderedCart($this->context->customer->id))
|
|
$this->context->cart = new Cart($id_cart);
|
|
else
|
|
{
|
|
$id_carrier = (int)$this->context->cart->id_carrier;
|
|
$this->context->cart->id_carrier = 0;
|
|
$this->context->cart->setDeliveryOption(null);
|
|
$this->context->cart->id_address_delivery = (int)Address::getFirstCustomerAddressId((int)($customer->id));
|
|
$this->context->cart->id_address_invoice = (int)Address::getFirstCustomerAddressId((int)($customer->id));
|
|
}
|
|
$this->context->cart->id_customer = (int)$customer->id;
|
|
$this->context->cart->secure_key = $customer->secure_key;
|
|
|
|
if ($this->ajax && isset($id_carrier) && $id_carrier && Configuration::get('PS_ORDER_PROCESS_TYPE'))
|
|
{
|
|
$delivery_option = array($this->context->cart->id_address_delivery => $id_carrier.',');
|
|
$this->context->cart->setDeliveryOption($delivery_option);
|
|
}
|
|
|
|
$this->context->cart->save();
|
|
$this->context->cookie->id_cart = (int)$this->context->cart->id;
|
|
$this->context->cookie->write();
|
|
$this->context->cart->autosetProductAddress();
|
|
|
|
Hook::exec('actionAuthentication');
|
|
|
|
// Login information have changed, so we check if the cart rules still apply
|
|
CartRule::autoRemoveFromCart($this->context);
|
|
CartRule::autoAddToCart($this->context);
|
|
|
|
if (!$this->ajax)
|
|
{
|
|
if (($back = Tools::getValue('back')) && $back == Tools::secureReferrer($back))
|
|
Tools::redirect(html_entity_decode($back));
|
|
if(strpos($back, 'modules') !== false && strpos($back, 'modules') === 0){
|
|
$explode = explode('/', $back);
|
|
$controller = explode('-', $explode[2]);
|
|
Tools::redirect(Context::getContext()->link->getModuleLink($explode[1],str_replace('.php', '', $controller[1])));
|
|
}
|
|
Tools::redirect('index.php?controller='.(($this->authRedirection !== false) ? urlencode($this->authRedirection) : $back));
|
|
}
|
|
}
|
|
}
|
|
if ($this->ajax)
|
|
{
|
|
$return = array(
|
|
'hasError' => !empty($this->errors),
|
|
'errors' => $this->errors,
|
|
'token' => Tools::getToken(false)
|
|
);
|
|
die(Tools::jsonEncode($return));
|
|
}
|
|
else
|
|
$this->context->smarty->assign('authentification_error', $this->errors);
|
|
}
|
|
|
|
|
|
/**
|
|
* Set default medias for this controller
|
|
* @see FrontController::setMedia()
|
|
*/
|
|
public function setMedia()
|
|
{
|
|
parent::setMedia();
|
|
$this->addJS(_THEME_JS_DIR_.'jquery.carouFredSel-6.2.1-packed.js', 'all');
|
|
}
|
|
|
|
/**
|
|
* sendConfirmationMail
|
|
* @param Customer $customer
|
|
* @return bool
|
|
*/
|
|
protected function sendConfirmationMail(Customer $customer)
|
|
{
|
|
if (!Configuration::get('PS_CUSTOMER_CREATION_EMAIL'))
|
|
return true;
|
|
|
|
/**
|
|
* @Override
|
|
* Désactivation de l'envoie d'email pour les campagnes Adlead (parrain id = 377)
|
|
*/
|
|
if(Tools::getValue('referralprogram') == 'campagne1+adlead@privilegedemarque.com')
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return Mail::Send(
|
|
$this->context->language->id,
|
|
'account',
|
|
Mail::l('Welcome!'),
|
|
array(
|
|
'{firstname}' => $customer->firstname,
|
|
'{lastname}' => $customer->lastname,
|
|
'{email}' => $customer->email,
|
|
'{passwd}' => Tools::getValue('passwd')),
|
|
$customer->email,
|
|
$customer->firstname.' '.$customer->lastname
|
|
);
|
|
}
|
|
}
|
|
} |