Jump to content

Page de validation contact


Recommended Posts

Bonjour a vous tous,


 


j'aimerai créer une page de validation du formulaire de contact.


apres que l'utilisateur clique sur "envoyer" de l'url /contactez-nous , je veux qu'il soit rediriger vers l'adresse /contactez-nous/validation.


 


j'ai rajouter dans le fichier .htaccess ce code :



RewriteEngine On
RewriteRule ^contactez-nous/validation$ index.php?controller=contact&action=validation [l] 

et dans override/controllers/front/ContactController.php j'ai surcharger le fonction initContent()



public function initContent()
{
parent::initContent();

$this->assignOrderList();

$email = Tools::safeOutput(Tools::getValue('from',
((isset($this->context->cookie) && isset($this->context->cookie->email) && Validate::isEmail($this->context->cookie->email)) ? $this->context->cookie->email : '')));
$this->context->smarty->assign(array(
'errors' => $this->errors,
'email' => $email,
'fileupload' => Configuration::get('PS_CUSTOMER_SERVICE_FILE_UPLOAD')
));


if (($id_customer_thread = (int)Tools::getValue('id_customer_thread')) && $token = Tools::getValue('token'))
{
$customerThread = Db::getInstance()->getRow('
SELECT cm.*
FROM '._DB_PREFIX_.'customer_thread cm
WHERE cm.id_customer_thread = '.(int)$id_customer_thread.'
AND cm.id_shop = '.(int)$this->context->shop->id.'
AND token = \''.pSQL($token).'\'
');
$this->context->smarty->assign('customerThread', $customerThread);
}

$this->context->smarty->assign(array(
'contacts' => Contact::getContacts($this->context->language->id),
'message' => html_entity_decode(Tools::getValue('message'))
));
// changement
if(isset($_GET['action']) && $_GET['action'] == "validation" ){
$this->validation();
}else{
$this->setTemplate(_PS_THEME_DIR_.'contact-form.tpl');
}
//$this->setTemplate(_PS_THEME_DIR_.'contact-form.tpl');
}


public function validation(){
$this->context->smarty->assign('confirmation', 1);
$this->setTemplate(_PS_THEME_DIR_.'contact-validation.tpl');
}
 

j'ai aussi créer mon fichier tpl dans le dossier du thème.


le problème c'est que quand je tape dans le navigateur contactez-nous/validation j'ai toujours une page 404 .


 


Avez vous une idée pour corriger le problème svp.


 


PrestaShop 1.5.6.2


 


Merci.


 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...