Retour de l'ano 0000023 sur le Captcha : on remplace par un module qui fonctionne

This commit is contained in:
2020-06-01 19:39:33 +02:00
parent 7a37450953
commit 401fedea95
178 changed files with 15050 additions and 4938 deletions

View File

@@ -1,27 +0,0 @@
# eicaptcha
Module EiCaptcha for prestashop 1.7
This module display Google recaptcha on the following forms :
- contact form
- account creation form
This module relies upon the override of the folowing files :
- AuthController
- ContactForm Module
The last version used composer to get recaptcha lib.
Don't forget to use `composer update` in order to download the necessary recaptcha composer package.
Otherwise you can go on the github release page https://github.com/nenes25/eicaptcha/releases and download the last 2.0.x version release to get the full package
Screenshots
---
<p align="center">
Captcha on contact form <br />
<img src="https://www.h-hennes.fr/blog/wp-content/uploads/2017/07/eicaptcha-17-contact.jpg" alt="Captcha Contact Form" />
</p>
<p align="center">
Captcha on account creation form <br />
<img src="https://www.h-hennes.fr/blog/wp-content/uploads/2017/07/eicaptcha-17-account.jpg" alt="Captcha on account creation form" />
</p>

View File

@@ -1,10 +0,0 @@
/**
* Module Captcha
* Add (re)captcha on contact and account creation forms
* © h-hennes 2013-2017
* http://www.h-hennes.fr/blog/
*/
- V 2.0.0 - 2017-07-10 : New version for prestashop 1.7, add only captcha for contact form and account creation
- V 2.0.1 - 2017-12-01 : Css improvments thanks to Arnaud Merigeau
- V 2.0.2 - 2018-02-13 : Check if composer "vendor" directory is present

View File

@@ -1,25 +0,0 @@
{
"name": "nenes25/eicaptcha",
"description": "PrestaShop Captcha Module",
"homepage": "https://github.com/nenes25/eicaptcha",
"license": "AFL - Academic Free License (AFL 3.0)",
"authors": [
{
"name": "Hhennes",
"email": "contact@h-hennes.fr"
},
{
"name": "drzraf",
"email": "raphael.droz@gmail.com"
}
],
"require": {
"php": ">=5.3.2",
"google/recaptcha": "~1.1"
},
"config": {
"preferred-install": "dist"
},
"type": "prestashop-module"
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>eicaptcha</name>
<displayName><![CDATA[Ei Captcha]]></displayName>
<version><![CDATA[2.0.0.beta]]></version>
<description><![CDATA[Add a captcha to your website form]]></description>
<author><![CDATA[hhennes]]></author>
<tab><![CDATA[front_office_features]]></tab>
<is_configurable>1</is_configurable>
<need_instance>1</need_instance>
<limited_countries></limited_countries>
</module>

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<module>
<name>eicaptcha</name>
<displayName><![CDATA[EiCaptcha]]></displayName>
<version><![CDATA[2.0.2]]></version>
<description><![CDATA[Ajout de Captcha sur le formulaire de contact et de cr&eacute;ation de compte]]></description>
<author><![CDATA[hhennes]]></author>
<tab><![CDATA[front_office_features]]></tab>
<is_configurable>1</is_configurable>
<need_instance>1</need_instance>
<limited_countries></limited_countries>
</module>

View File

@@ -1,364 +0,0 @@
<?php
/**
* 2007-2017 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 https://www.prestashop.com for more information.
*
* @author Hennes Hervé <contact@h-hennes.fr>
* @copyright 2013-2017 Hennes Hervé
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* http://www.h-hennes.fr/blog/
*/
if (!defined('_PS_VERSION_')) {
exit;
}
class EiCaptcha extends Module
{
private $_html = '';
public function __construct()
{
$this->author = 'hhennes';
$this->name = 'eicaptcha';
$this->tab = 'front_office_features';
$this->version = '2.0.2';
$this->need_instance = 1;
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('Ei Captcha');
$this->description = $this->l('Add a captcha to your website form');
if ($this->active && (!Configuration::get('CAPTCHA_PUBLIC_KEY') || !Configuration::get('CAPTCHA_PRIVATE_KEY'))) {
$this->warning = $this->l('Captcha Module need to be configurated');
}
$this->themes = array( 0 => 'light', 1 => 'dark');
$this->dependencies = array('contactform');
$this->ps_versions_compliancy = array('min' => '1.7.1.0', 'max' => _PS_VERSION_);
}
public function install()
{
if (!parent::install()
|| !$this->registerHook('header')
|| !$this->registerHook('displayCustomerAccountForm')
|| !$this->registerHook('actionContactFormSubmitCaptcha')
|| !$this->registerHook('actionContactFormSubmitBefore')
|| !Configuration::updateValue('CAPTCHA_ENABLE_ACCOUNT', 0)
|| !Configuration::updateValue('CAPTCHA_ENABLE_CONTACT', 0)
|| !Configuration::updateValue('CAPTCHA_THEME', 0)
) {
return false;
}
return true;
}
public function uninstall()
{
if (!parent::uninstall()) {
return false;
}
if (!Configuration::deleteByName('CAPTCHA_PUBLIC_KEY') || !Configuration::deleteByName('CAPTCHA_PRIVATE_KEY') || !Configuration::deleteByName('CAPTCHA_ENABLE_ACCOUNT')
|| !Configuration::deleteByName('CAPTCHA_ENABLE_CONTACT') || !Configuration::deleteByName('CAPTCHA_FORCE_LANG') || !Configuration::deleteByName('CAPTCHA_THEME')
) {
return false;
}
return true;
}
/**
* Post Process in back office
*/
public function postProcess()
{
if (Tools::isSubmit('SubmitCaptchaConfiguration')) {
Configuration::updateValue('CAPTCHA_PUBLIC_KEY', Tools::getValue('CAPTCHA_PUBLIC_KEY'));
Configuration::updateValue('CAPTCHA_PRIVATE_KEY', Tools::getValue('CAPTCHA_PRIVATE_KEY'));
Configuration::updateValue('CAPTCHA_ENABLE_ACCOUNT', (int) Tools::getValue('CAPTCHA_ENABLE_ACCOUNT'));
Configuration::updateValue('CAPTCHA_ENABLE_CONTACT', (int) Tools::getValue('CAPTCHA_ENABLE_CONTACT'));
Configuration::updateValue('CAPTCHA_FORCE_LANG', Tools::getValue('CAPTCHA_FORCE_LANG'));
Configuration::updateValue('CAPTCHA_THEME', (int)Tools::getValue('CAPTCHA_THEME'));
$this->_html .= $this->displayConfirmation($this->l('Settings updated'));
}
}
/**
* Module Configuration in Back Office
*/
public function getContent()
{
$this->_html .= $this->_checkComposer();
$this->_html .= $this->postProcess();
$this->_html .= $this->renderForm();
return $this->_html;
}
/**
* Admin Form for module Configuration
*/
public function renderForm()
{
$fields_form = array(
'form' => array(
'legend' => array(
'title' => $this->l('Eicaptcha Configuration'),
'icon' => 'icon-cogs'
),
'description' => $this->l('To get your own public and private keys please click on the folowing link').'<br /><a href="https://www.google.com/recaptcha/intro/index.html" target="_blank">https://www.google.com/recaptcha/intro/index.html</a>',
'input' => array(
array(
'type' => 'text',
'label' => $this->l('Captcha public key (Site key)'),
'name' => 'CAPTCHA_PUBLIC_KEY',
'required' => true,
'empty_message' => $this->l('Please fill the captcha public key'),
),
array(
'type' => 'text',
'label' => $this->l('Captcha private key (Secret key)'),
'name' => 'CAPTCHA_PRIVATE_KEY',
'required' => true,
'empty_message' => $this->l('Please fill the captcha private key'),
),
array(
'type' => 'radio',
'label' => $this->l('Enable Captcha for contact form'),
'name' => 'CAPTCHA_ENABLE_CONTACT',
'required' => true,
'class' => 't',
'is_bool' => true,
'values' => array(
array(
'id' => 'active_on',
'value'=> 1,
'label'=> $this->l('Enabled'),
),
array(
'id' => 'active_off',
'value'=> 0,
'label'=> $this->l('Disabled'),
),
),
),
array(
'type' => 'radio',
'label' => $this->l('Enable Captcha for account creation'),
'name' => 'CAPTCHA_ENABLE_ACCOUNT',
'required' => true,
'class' => 't',
'is_bool' => true,
'values' => array(
array(
'id' => 'active_on',
'value'=> 1,
'label'=> $this->l('Enabled'),
),
array(
'id' => 'active_off',
'value'=> 0,
'label'=> $this->l('Disabled'),
),
),
),
array(
'type' => 'text',
'label' => $this->l('Force Captcha language'),
'hint' => $this->l('Language code ( en-GB | fr | de | de-AT | ... ) - Leave empty for autodetect'),
'desc' => $this->l('For available language codes see: https://developers.google.com/recaptcha/docs/language'),
'name' => 'CAPTCHA_FORCE_LANG',
'required' => false,
),
array(
'type' => 'radio',
'label' => $this->l('Theme'),
'name' => 'CAPTCHA_THEME',
'required' => true,
'is_bool' => true,
'values' => array(
array(
'id' => 'clight',
'value' => 0,
'label' => $this->l('Light'),
),
array(
'id' => 'cdark',
'value' => 1,
'label' => $this->l('Dark'),
),
),
),
),
'submit' => array(
'title' => $this->l('Save'),
'class' => 'button btn btn-default pull-right',
)
),
);
$helper = new HelperForm();
$helper->show_toolbar = false;
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
$helper->default_form_language = $lang->id;
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
$helper->id = 'eicaptcha';
//$helper->identifier = $this->identifier;
$helper->submit_action = 'SubmitCaptchaConfiguration';
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->tpl_vars = array(
'fields_value' => $this->getConfigFieldsValues(),
'languages' => $this->context->controller->getLanguages(),
'id_language' => $this->context->language->id
);
return $helper->generateForm(array($fields_form));
}
/**
* Get config values to hydrate the helperForm
*/
public function getConfigFieldsValues()
{
return array(
'CAPTCHA_PRIVATE_KEY' => Tools::getValue('CAPTCHA_PRIVATE_KEY', Configuration::get('CAPTCHA_PRIVATE_KEY')),
'CAPTCHA_PUBLIC_KEY' => Tools::getValue('CAPTCHA_PUBLIC_KEY', Configuration::get('CAPTCHA_PUBLIC_KEY')),
'CAPTCHA_ENABLE_ACCOUNT' => Tools::getValue('CAPTCHA_ENABLE_ACCOUNT', Configuration::get('CAPTCHA_ENABLE_ACCOUNT')),
'CAPTCHA_ENABLE_CONTACT' => Tools::getValue('CAPTCHA_ENABLE_CONTACT', Configuration::get('CAPTCHA_ENABLE_CONTACT')),
'CAPTCHA_FORCE_LANG' => Tools::getValue('CAPTCHA_FORCE_LANG', Configuration::get('CAPTCHA_FORCE_LANG')),
'CAPTCHA_THEME' => Tools::getValue('CAPTCHA_THEME', Configuration::get('CAPTCHA_THEME')),
);
}
/**
* Hook Header
*/
public function hookHeader($params)
{
//Add Content box to contact form page in order to display captcha
if ( $this->context->controller instanceof ContactController
&& Configuration::get('CAPTCHA_ENABLE_CONTACT') == 1
) {
$this->context->controller->registerJavascript(
'modules-eicaptcha-contact-form',
'modules/'.$this->name.'/views/js/eicaptcha-contact-form.js'
);
$this->context->controller->registerStylesheet(
'module-eicaptcha',
'modules/'.$this->name.'/views/css/eicaptcha.css'
);
}
if ( $this->context->controller instanceof ContactController
|| $this->context->controller instanceof AuthController
) {
$this->context->controller->registerStylesheet(
'module-eicaptcha',
'modules/'.$this->name.'/views/css/eicaptcha.css'
);
//Dynamic insertion of the content
$js = '<script type="text/javascript">
//Recaptcha CallBack Function
var onloadCallback = function() {grecaptcha.render("captcha-box", {"theme" : "' . $this->themes[Configuration::get('CAPTCHA_THEME')] . '", "sitekey" : "' . Configuration::get('CAPTCHA_PUBLIC_KEY') . '"});};
</script>';
$js .= '<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit&hl=' . Configuration::get('CAPTCHA_FORCE_LANG') . '" async defer></script>';
return $js;
}
}
/**
* Add Captcha on the Customer Registration Form
*/
public function hookDisplayCustomerAccountForm($params)
{
if (Configuration::get('CAPTCHA_ENABLE_ACCOUNT') == 1) {
$this->context->smarty->assign('publicKey', Configuration::get('CAPTCHA_PUBLIC_KEY'));
$this->context->smarty->assign('captchaforcelang', Configuration::get('CAPTCHA_FORCE_LANG'));
$this->context->smarty->assign('captchatheme', $this->themes[Configuration::get('CAPTCHA_THEME')]);
return $this->display(__FILE__, 'views/templates/hook/hookDisplayCustomerAccountForm.tpl');
}
}
/**
* Check captcha before submit account
* Custom hook
* @param type $params
* @return boolean
*/
public function hookActionContactFormSubmitCaptcha($params)
{
if ( Configuration::get('CAPTCHA_ENABLE_ACCOUNT') == 1) {
$this->_validateCaptcha();
}
}
/**
* Check captcha before submit contact form
* new custom hook
* @return int
*/
public function hookActionContactFormSubmitBefore()
{
if (Configuration::get('CAPTCHA_ENABLE_CONTACT') == 1) {
$this->_validateCaptcha();
}
}
/**
* Validate Captcha
*/
protected function _validateCaptcha()
{
$context = Context::getContext();
require_once(__DIR__ . '/vendor/autoload.php');
$captcha = new \ReCaptcha\ReCaptcha(Configuration::get('CAPTCHA_PRIVATE_KEY'));
$result = $captcha->verify(Tools::getValue('g-recaptcha-response'),
Tools::getRemoteAddr());
if (! $result->isSuccess()) {
$context->controller->errors[] = $this->l('Please validate the captcha field before submitting your request');
}
}
/**
* Check if needed composer directory is present
*/
protected function _checkComposer()
{
if (!is_dir(dirname(__FILE__).'/vendor')) {
$errorMessage = $this->l('This module need composer to work, please go into module directory %s and run composer install or dowload and install latest release from %s');
return $this->displayError(
sprintf($errorMessage, dirname(__FILE__),
'https://github.com/nenes25/eicaptcha/releases')
);
}
return '';
}
}

View File

@@ -1,12 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{eicaptcha}prestashop>eicaptcha_3e87eed4786fe702ae961b55bbf02c6a'] = '(Re)Captcha';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_d3c016a5fdfcf8f9396a9ac1fb02a004'] = 'Ajoute d\'un (re)captcha au formulaire de contact prestashop';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_793b58515cefe26f6a3c5ab782460a69'] = 'Le mode Captcha doit être configuré';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_feee70b268da9eeeaeba8a837477db0d'] = 'Configuration du captcha';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_77f682c46c4c98d39cfb703d3606f505'] = 'Pour récupérer vos propres clés, merci de cliquer sur le lien suivant';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_d2560860c51f895a9871741f0805c39e'] = 'Clé privée';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_70afdcba0a7135e2d41fc2d23a6f2fd9'] = 'Clé publique';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_28fe443e74d1760d87986f153fb88bb7'] = 'Le code du captcha est erronné';

View File

@@ -1,35 +0,0 @@
<?php
/*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 2 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -1,34 +0,0 @@
<?php
class AuthController extends AuthControllerCore
{
/**
* Surcharge specifique eicaptcha
*/
public function initContent()
{
if ( Tools::isSubmit('submitCreate') ) {
Hook::exec('actionContactFormSubmitCaptcha');
if ( ! sizeof( $this->context->controller->errors ) ) {
parent::initContent();
} else {
$register_form = $this
->makeCustomerForm()
->setGuestAllowed(false)
->fillWith(Tools::getAllValues());
FrontController::initContent();
$this->context->smarty->assign([
'register_form' => $register_form->getProxy(),
'hook_create_account_top' => Hook::exec('displayCustomerAccountFormTop')
]);
$this->setTemplate('customer/registration');
}
} else {
parent::initContent();
}
}
}

View File

@@ -1,35 +0,0 @@
<?php
/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -1,14 +0,0 @@
<?php
class ContactformOverride extends Contactform
{
public function sendMessage() {
//Module Eicaptcha : Check captcha before submit
Hook::exec('actionContactFormSubmitBefore');
if ( !sizeof($this->context->controller->errors)) {
parent::sendMessage();
}
}
}

View File

@@ -1,35 +0,0 @@
<?php
/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -1,27 +0,0 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{eicaptcha}prestashop>eicaptcha_3e87eed4786fe702ae961b55bbf02c6a'] = 'EiCaptcha';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_76870a3a596aa5fe3b836a20e53c7698'] = 'Ajout de Captcha sur le formulaire de contact et de création de compte';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_793b58515cefe26f6a3c5ab782460a69'] = 'Le mode Captcha doit être configuré';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_fabff9d49a682feeffead298a9801c2b'] = 'Configuration EiCaptcha';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_77f682c46c4c98d39cfb703d3606f505'] = 'Pour récupérer vos propres clés, merci de cliquer sur le lien suivant';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_2d6759f60f165404e274683029df8e5b'] = 'Clé de site';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_de7e39ae12eb7d5e08c84ff8739ee5fc'] = 'Merci de saisir la clé de site';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_532719b9b22c0444d8c65bdc6b80fa1e'] = 'Clé secrète';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_30c1139b1b654780ec1ef5c35323806d'] = 'Merci de saisir la clé secrète';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_8734cb06c440a837b751eb664be56f3c'] = 'Activer pour le formulaire de contact';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_4d43056cebf6d60747ad8064a941b8cd'] = 'Activer pour la création de compte';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_2f298dd749c5c927a272586189aecaa9'] = 'Forcer la langue';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_50db68af68d07f407b398f20788e6277'] = 'Code langue ( en-GB | fr | de | de-AT | ... ) - Laisser vide pour utiliser la langue du site par défaut';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_43ec71bfafdad1482bff90168f80531b'] = 'Pour voir la liste des codes langues disponibles consulter la page : https://developers.google.com/recaptcha/docs/language';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_d721757161f7f70c5b0949fdb6ec2c30'] = 'Thème';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_9914a0ce04a7b7b6a8e39bec55064b82'] = 'Light';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_a18366b217ebf811ad1886e4f4f865b2'] = 'Dark';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_632ee8e447c5c09ca7577f9281cbb999'] = 'Merci de valider le captcha';
$_MODULE['<{eicaptcha}prestashop>eicaptcha_2422cb22995f528cda5e7d40750c2a55'] = 'Merci de patienter pendant la validation du captcha';
$_MODULE['<{eicaptcha}prestashop>hookdisplaycustomeraccountform_45d048c35e3cfd449dc0a1b503cd103a'] = 'Captcha';

View File

@@ -1,7 +0,0 @@
<?php
// autoload.php @generated by Composer
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInitcfa6164d1e1332d482a4b3511a93039c::getLoader();

View File

@@ -1,445 +0,0 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Autoload;
/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see http://www.php-fig.org/psr/psr-0/
* @see http://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
// PSR-4
private $prefixLengthsPsr4 = array();
private $prefixDirsPsr4 = array();
private $fallbackDirsPsr4 = array();
// PSR-0
private $prefixesPsr0 = array();
private $fallbackDirsPsr0 = array();
private $useIncludePath = false;
private $classMap = array();
private $classMapAuthoritative = false;
private $missingClasses = array();
private $apcuPrefix;
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', $this->prefixesPsr0);
}
return array();
}
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array $classMap Class to filename map
*/
public function addClassMap(array $classMap)
{
if ($this->classMap) {
$this->classMap = array_merge($this->classMap, $classMap);
} else {
$this->classMap = $classMap;
}
}
/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param array|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*/
public function add($prefix, $paths, $prepend = false)
{
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
(array) $paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
(array) $paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
(array) $paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
(array) $paths
);
}
}
/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
(array) $paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
(array) $paths
);
}
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
// Register directories for a new namespace.
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
(array) $paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
(array) $paths
);
}
}
/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param array|string $paths The PSR-0 base directories
*/
public function set($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
} else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}
/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param array|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*/
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
}
}
/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*/
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}
/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/
public function getUseIncludePath()
{
return $this->useIncludePath;
}
/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classMapAuthoritative = $classMapAuthoritative;
}
/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/
public function isClassMapAuthoritative()
{
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
}
/**
* Unregisters this instance as an autoloader.
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return bool|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
includeFile($file);
return true;
}
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
}
return $file;
}
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath.'\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}
}
}
}
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
// PSR-0 lookup
if (false !== $pos = strrpos($class, '\\')) {
// namespaced class name
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
// PEAR-like class name
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
}
if (isset($this->prefixesPsr0[$first])) {
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
}
}
}
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
// PSR-0 include paths.
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
return false;
}
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*/
function includeFile($file)
{
include $file;
}

View File

@@ -1,21 +0,0 @@
Copyright (c) Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -1,9 +0,0 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
);

View File

@@ -1,9 +0,0 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
);

View File

@@ -1,10 +0,0 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'ReCaptcha\\' => array($vendorDir . '/google/recaptcha/src/ReCaptcha'),
);

View File

@@ -1,52 +0,0 @@
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInitcfa6164d1e1332d482a4b3511a93039c
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInitcfa6164d1e1332d482a4b3511a93039c', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInitcfa6164d1e1332d482a4b3511a93039c', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitcfa6164d1e1332d482a4b3511a93039c::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {
$loader->set($namespace, $path);
}
$map = require __DIR__ . '/autoload_psr4.php';
foreach ($map as $namespace => $path) {
$loader->setPsr4($namespace, $path);
}
$classMap = require __DIR__ . '/autoload_classmap.php';
if ($classMap) {
$loader->addClassMap($classMap);
}
}
$loader->register(true);
return $loader;
}
}

View File

@@ -1,31 +0,0 @@
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInitcfa6164d1e1332d482a4b3511a93039c
{
public static $prefixLengthsPsr4 = array (
'R' =>
array (
'ReCaptcha\\' => 10,
),
);
public static $prefixDirsPsr4 = array (
'ReCaptcha\\' =>
array (
0 => __DIR__ . '/..' . '/google/recaptcha/src/ReCaptcha',
),
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitcfa6164d1e1332d482a4b3511a93039c::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitcfa6164d1e1332d482a4b3511a93039c::$prefixDirsPsr4;
}, null, ClassLoader::class);
}
}

View File

@@ -1,49 +0,0 @@
[
{
"name": "google/recaptcha",
"version": "1.1.3",
"version_normalized": "1.1.3.0",
"source": {
"type": "git",
"url": "https://github.com/google/recaptcha.git",
"reference": "5a56d15ca10a7b75158178752b2ad8f755eb4f78"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/google/recaptcha/zipball/5a56d15ca10a7b75158178752b2ad8f755eb4f78",
"reference": "5a56d15ca10a7b75158178752b2ad8f755eb4f78",
"shasum": ""
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"time": "2017-03-09T18:44:34+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"installation-source": "dist",
"autoload": {
"psr-4": {
"ReCaptcha\\": "src/ReCaptcha"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
"homepage": "http://www.google.com/recaptcha/",
"keywords": [
"Abuse",
"captcha",
"recaptcha",
"spam"
]
}
]

View File

@@ -1,3 +0,0 @@
/composer.lock
/nbproject/private/
/vendor/

View File

@@ -1,19 +0,0 @@
language: php
sudo: false
php:
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- hhvm
- nightly
before_script:
- composer install
- phpenv version-name | grep ^5.[34] && echo "extension=apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
- phpenv version-name | grep ^5.[34] && echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
script:
- vendor/bin/phpunit

View File

@@ -1,24 +0,0 @@
Want to contribute? Great! First, read this page (including the small print at the end).
### Before you contribute
Before we can use your code, you must sign the
[Google Individual Contributor License Agreement](https://developers.google.com/open-source/cla/individual?csw=1)
(CLA), which you can do online. The CLA is necessary mainly because you own the
copyright to your changes, even after your contribution becomes part of our
codebase, so we need your permission to use and distribute your code. We also
need to be sure of various other things—for instance that you'll tell us if you
know that your code infringes on other people's patents. You don't have to sign
the CLA until after you've submitted your code for review and a member has
approved it, but you must do it before we can put your code into our codebase.
Before you start working on a larger contribution, you should get in touch with
us first through the issue tracker with your idea so that we can help out and
possibly guide you. Coordinating up front makes it much easier to avoid
frustration later on.
### Code reviews
All submissions, including submissions by project members, require review. We
use GitHub pull requests for this purpose.
### The small print
Contributions made by corporations are covered by a different agreement than
the one above, the Software Grant and Corporate Contributor License Agreement.

View File

@@ -1,29 +0,0 @@
Copyright 2014, Google Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@@ -1,115 +0,0 @@
# reCAPTCHA PHP client library
[![Build Status](https://travis-ci.org/google/recaptcha.svg)](https://travis-ci.org/google/recaptcha)
[![Latest Stable Version](https://poser.pugx.org/google/recaptcha/v/stable.svg)](https://packagist.org/packages/google/recaptcha)
[![Total Downloads](https://poser.pugx.org/google/recaptcha/downloads.svg)](https://packagist.org/packages/google/recaptcha)
* Project page: http://www.google.com/recaptcha/
* Repository: https://github.com/google/recaptcha
* Version: 1.1.3
* License: BSD, see [LICENSE](LICENSE)
## Description
reCAPTCHA is a free CAPTCHA service that protect websites from spam and abuse.
This is Google authored code that provides plugins for third-party integration
with reCAPTCHA.
## Installation
### Composer (Recommended)
[Composer](https://getcomposer.org/) is a widely used dependency manager for PHP
packages. This reCAPTCHA client is available on Packagist as
[`google/recaptcha`](https://packagist.org/packages/google/recaptcha) and can be
installed either by running the `composer require` command or adding the library
to your `composer.json`. To enable Composer for you project, refer to the
project's [Getting Started](https://getcomposer.org/doc/00-intro.md)
documentation.
To add this dependency using the command, run the following from within your
project directory:
```
composer require google/recaptcha "~1.1"
```
Alternatively, add the dependency directly to your `composer.json` file:
```json
"require": {
"google/recaptcha": "~1.1"
}
```
### Direct download (no Composer)
If you wish to install the library manually (i.e. without Composer), then you
can use the links on the main project page to either clone the repo or download
the [ZIP file](https://github.com/google/recaptcha/archive/master.zip). For
convenience, an autoloader script is provided in `src/autoload.php` which you
can require into your script instead of Composer's `vendor/autoload.php`. For
example:
```php
require('/path/to/recaptcha/src/autoload.php');
$recaptcha = new \ReCaptcha\ReCaptcha($secret);
```
The classes in the project are structured according to the
[PSR-4](http://www.php-fig.org/psr/psr-4/) standard, so you may of course also
use your own autoloader or require the needed files directly in your code.
### Development install
If you would like to contribute to this project or run the unit tests on within
your own environment you will need to install the development dependencies, in
this case that means [PHPUnit](https://phpunit.de/). If you clone the repo and
run `composer install` from within the repo, this will also grab PHPUnit and all
its dependencies for you. If you only need the autoloader installed, then you
can always specify to Composer not to run in development mode, e.g. `composer
install --no-dev`.
*Note:* These dependencies are only required for development, there's no
requirement for them to be included in your production code.
## Usage
First, register keys for your site at https://www.google.com/recaptcha/admin
When your app receives a form submission containing the `g-recaptcha-response`
field, you can verify it using:
```php
<?php
$recaptcha = new \ReCaptcha\ReCaptcha($secret);
$resp = $recaptcha->verify($gRecaptchaResponse, $remoteIp);
if ($resp->isSuccess()) {
// verified!
// if Domain Name Validation turned off don't forget to check hostname field
// if($resp->getHostName() === $_SERVER['SERVER_NAME']) { }
} else {
$errors = $resp->getErrorCodes();
}
```
You can see an end-to-end working example in
[examples/example-captcha.php](examples/example-captcha.php)
## Upgrading
### From 1.0.0
The previous version of this client is still available on the `1.0.0` tag [in
this repo](https://github.com/google/recaptcha/tree/1.0.0) but it is purely for
reference and will not receive any updates.
The major changes in 1.1.0 are:
* installation now via Composer;
* class loading also via Composer;
* classes now namespaced;
* old method call was `$rc->verifyResponse($remoteIp, $response)`, new call is
`$rc->verify($response, $remoteIp)`
## Contributing
We accept contributions via GitHub Pull Requests, but all contributors need to
be covered by the standard Google Contributor License Agreement. You can find
instructions for this in [CONTRIBUTING](CONTRIBUTING.md)

View File

@@ -1,28 +0,0 @@
{
"name": "google/recaptcha",
"description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
"type": "library",
"keywords": ["recaptcha", "captcha", "spam", "abuse"],
"homepage": "http://www.google.com/recaptcha/",
"license": "BSD-3-Clause",
"support": {
"forum": "https://groups.google.com/forum/#!forum/recaptcha",
"source": "https://github.com/google/recaptcha"
},
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"psr-4": {
"ReCaptcha\\": "src/ReCaptcha"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}

View File

@@ -1,130 +0,0 @@
<?php
/**
* Working sample code to accompany the library. The instructions here assume
* you've just cloned the repo. If you've installed via composer, you will want
* to adjust the path to the autoloader.
*
* 1. Run the server. For example, under Linux you can probably use:
* /usr/bin/php -S "localhost:8000" "examples/example-captcha.php"
* 2. Point your browser at http://localhost:8000
* 3. Follow the instructions
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
// Initiate the autoloader. The file should be generated by Composer.
// You will provide your own autoloader or require the files directly if you did
// not install via Composer.
require_once __DIR__ . '/../vendor/autoload.php';
// Register API keys at https://www.google.com/recaptcha/admin
$siteKey = '';
$secret = '';
// reCAPTCHA supported 40+ languages listed here: https://developers.google.com/recaptcha/docs/language
$lang = 'en';
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>reCAPTCHA Example</title>
<link rel="shortcut icon" href="//www.gstatic.com/recaptcha/admin/favicon.ico" type="image/x-icon"/>
<style type="text/css">
body {
margin: 1em 5em 0 5em;
font-family: sans-serif;
}
fieldset {
display: inline;
padding: 1em;
}
</style>
</head>
<body>
<h1>reCAPTCHA Example</h1>
<?php if ($siteKey === '' || $secret === ''): ?>
<h2>Add your keys</h2>
<p>If you do not have keys already then visit <kbd>
<a href = "https://www.google.com/recaptcha/admin">
https://www.google.com/recaptcha/admin</a></kbd> to generate them.
Edit this file and set the respective keys in <kbd>$siteKey</kbd> and
<kbd>$secret</kbd>. Reload the page after this.</p>
<?php
elseif (isset($_POST['g-recaptcha-response'])):
// The POST data here is unfiltered because this is an example.
// In production, *always* sanitise and validate your input'
?>
<h2><kbd>POST</kbd> data</h2>
<kbd><pre><?php var_export($_POST); ?></pre></kbd>
<?php
// If the form submission includes the "g-captcha-response" field
// Create an instance of the service using your secret
$recaptcha = new \ReCaptcha\ReCaptcha($secret);
// If file_get_contents() is locked down on your PHP installation to disallow
// its use with URLs, then you can use the alternative request method instead.
// This makes use of fsockopen() instead.
// $recaptcha = new \ReCaptcha\ReCaptcha($secret, new \ReCaptcha\RequestMethod\SocketPost());
// Make the call to verify the response and also pass the user's IP address
$resp = $recaptcha->verify($_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR']);
if ($resp->isSuccess()):
// If the response is a success, that's it!
?>
<h2>Success!</h2>
<p>That's it. Everything is working. Go integrate this into your real project.</p>
<p><a href="/">Try again</a></p>
<?php
else:
// If it's not successful, then one or more error codes will be returned.
?>
<h2>Something went wrong</h2>
<p>The following error was returned: <?php
foreach ($resp->getErrorCodes() as $code) {
echo '<kbd>' , $code , '</kbd> ';
}
?></p>
<p>Check the error code reference at <kbd><a href="https://developers.google.com/recaptcha/docs/verify#error-code-reference">https://developers.google.com/recaptcha/docs/verify#error-code-reference</a></kbd>.
<p><strong>Note:</strong> Error code <kbd>missing-input-response</kbd> may mean the user just didn't complete the reCAPTCHA.</p>
<p><a href="/">Try again</a></p>
<?php
endif;
else:
// Add the g-recaptcha tag to the form you want to include the reCAPTCHA element
?>
<p>Complete the reCAPTCHA then submit the form.</p>
<form action="/" method="post">
<fieldset>
<legend>An example form</legend>
<p>Example input A: <input type="text" name="ex-a" value="foo"></p>
<p>Example input B: <input type="text" name="ex-b" value="bar"></p>
<div class="g-recaptcha" data-sitekey="<?php echo $siteKey; ?>"></div>
<script type="text/javascript"
src="https://www.google.com/recaptcha/api.js?hl=<?php echo $lang; ?>">
</script>
<p><input type="submit" value="Submit" /></p>
</fieldset>
</form>
<?php endif; ?>
</body>
</html>

View File

@@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.4/phpunit.xsd"
colors="true"
verbose="true"
bootstrap="src/autoload.php">
<testsuites>
<testsuite name="reCAPTCHA Test Suite">
<directory>tests/ReCaptcha/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/ReCaptcha/</directory>
</whitelist>
</filter>
</phpunit>

View File

@@ -1,98 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
/**
* reCAPTCHA client.
*/
class ReCaptcha
{
/**
* Version of this client library.
* @const string
*/
const VERSION = 'php_1.1.3';
/**
* Shared secret for the site.
* @var string
*/
private $secret;
/**
* Method used to communicate with service. Defaults to POST request.
* @var RequestMethod
*/
private $requestMethod;
/**
* Create a configured instance to use the reCAPTCHA service.
*
* @param string $secret shared secret between site and reCAPTCHA server.
* @param RequestMethod $requestMethod method used to send the request. Defaults to POST.
* @throws \RuntimeException if $secret is invalid
*/
public function __construct($secret, RequestMethod $requestMethod = null)
{
if (empty($secret)) {
throw new \RuntimeException('No secret provided');
}
if (!is_string($secret)) {
throw new \RuntimeException('The provided secret must be a string');
}
$this->secret = $secret;
if (!is_null($requestMethod)) {
$this->requestMethod = $requestMethod;
} else {
$this->requestMethod = new RequestMethod\Post();
}
}
/**
* Calls the reCAPTCHA siteverify API to verify whether the user passes
* CAPTCHA test.
*
* @param string $response The value of 'g-recaptcha-response' in the submitted form.
* @param string $remoteIp The end user's IP address.
* @return Response Response from the service.
*/
public function verify($response, $remoteIp = null)
{
// Discard empty solution submissions
if (empty($response)) {
$recaptchaResponse = new Response(false, array('missing-input-response'));
return $recaptchaResponse;
}
$params = new RequestParameters($this->secret, $response, $remoteIp, self::VERSION);
$rawResponse = $this->requestMethod->submit($params);
return Response::fromJson($rawResponse);
}
}

View File

@@ -1,42 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
/**
* Method used to send the request to the service.
*/
interface RequestMethod
{
/**
* Submit the request with the specified parameters.
*
* @param RequestParameters $params Request parameters
* @return string Body of the reCAPTCHA response
*/
public function submit(RequestParameters $params);
}

View File

@@ -1,74 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
/**
* Convenience wrapper around the cURL functions to allow mocking.
*/
class Curl
{
/**
* @see http://php.net/curl_init
* @param string $url
* @return resource cURL handle
*/
public function init($url = null)
{
return curl_init($url);
}
/**
* @see http://php.net/curl_setopt_array
* @param resource $ch
* @param array $options
* @return bool
*/
public function setoptArray($ch, array $options)
{
return curl_setopt_array($ch, $options);
}
/**
* @see http://php.net/curl_exec
* @param resource $ch
* @return mixed
*/
public function exec($ch)
{
return curl_exec($ch);
}
/**
* @see http://php.net/curl_close
* @param resource $ch
*/
public function close($ch)
{
curl_close($ch);
}
}

View File

@@ -1,88 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
/**
* Sends cURL request to the reCAPTCHA service.
* Note: this requires the cURL extension to be enabled in PHP
* @see http://php.net/manual/en/book.curl.php
*/
class CurlPost implements RequestMethod
{
/**
* URL to which requests are sent via cURL.
* @const string
*/
const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
/**
* Curl connection to the reCAPTCHA service
* @var Curl
*/
private $curl;
public function __construct(Curl $curl = null)
{
if (!is_null($curl)) {
$this->curl = $curl;
} else {
$this->curl = new Curl();
}
}
/**
* Submit the cURL request with the specified parameters.
*
* @param RequestParameters $params Request parameters
* @return string Body of the reCAPTCHA response
*/
public function submit(RequestParameters $params)
{
$handle = $this->curl->init(self::SITE_VERIFY_URL);
$options = array(
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $params->toQueryString(),
CURLOPT_HTTPHEADER => array(
'Content-Type: application/x-www-form-urlencoded'
),
CURLINFO_HEADER_OUT => false,
CURLOPT_HEADER => false,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => true
);
$this->curl->setoptArray($handle, $options);
$response = $this->curl->exec($handle);
$this->curl->close($handle);
return $response;
}
}

View File

@@ -1,70 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
/**
* Sends POST requests to the reCAPTCHA service.
*/
class Post implements RequestMethod
{
/**
* URL to which requests are POSTed.
* @const string
*/
const SITE_VERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';
/**
* Submit the POST request with the specified parameters.
*
* @param RequestParameters $params Request parameters
* @return string Body of the reCAPTCHA response
*/
public function submit(RequestParameters $params)
{
/**
* PHP 5.6.0 changed the way you specify the peer name for SSL context options.
* Using "CN_name" will still work, but it will raise deprecated errors.
*/
$peer_key = version_compare(PHP_VERSION, '5.6.0', '<') ? 'CN_name' : 'peer_name';
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => $params->toQueryString(),
// Force the peer to validate (not needed in 5.6.0+, but still works)
'verify_peer' => true,
// Force the peer validation to use www.google.com
$peer_key => 'www.google.com',
),
);
$context = stream_context_create($options);
return file_get_contents(self::SITE_VERIFY_URL, false, $context);
}
}

View File

@@ -1,104 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
/**
* Convenience wrapper around native socket and file functions to allow for
* mocking.
*/
class Socket
{
private $handle = null;
/**
* fsockopen
*
* @see http://php.net/fsockopen
* @param string $hostname
* @param int $port
* @param int $errno
* @param string $errstr
* @param float $timeout
* @return resource
*/
public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null)
{
$this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout));
if ($this->handle != false && $errno === 0 && $errstr === '') {
return $this->handle;
}
return false;
}
/**
* fwrite
*
* @see http://php.net/fwrite
* @param string $string
* @param int $length
* @return int | bool
*/
public function fwrite($string, $length = null)
{
return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length));
}
/**
* fgets
*
* @see http://php.net/fgets
* @param int $length
* @return string
*/
public function fgets($length = null)
{
return fgets($this->handle, $length);
}
/**
* feof
*
* @see http://php.net/feof
* @return bool
*/
public function feof()
{
return feof($this->handle);
}
/**
* fclose
*
* @see http://php.net/fclose
* @return bool
*/
public function fclose()
{
return fclose($this->handle);
}
}

View File

@@ -1,121 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
/**
* Sends a POST request to the reCAPTCHA service, but makes use of fsockopen()
* instead of get_file_contents(). This is to account for people who may be on
* servers where allow_url_open is disabled.
*/
class SocketPost implements RequestMethod
{
/**
* reCAPTCHA service host.
* @const string
*/
const RECAPTCHA_HOST = 'www.google.com';
/**
* @const string reCAPTCHA service path
*/
const SITE_VERIFY_PATH = '/recaptcha/api/siteverify';
/**
* @const string Bad request error
*/
const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}';
/**
* @const string Bad response error
*/
const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}';
/**
* Socket to the reCAPTCHA service
* @var Socket
*/
private $socket;
/**
* Constructor
*
* @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing
*/
public function __construct(Socket $socket = null)
{
if (!is_null($socket)) {
$this->socket = $socket;
} else {
$this->socket = new Socket();
}
}
/**
* Submit the POST request with the specified parameters.
*
* @param RequestParameters $params Request parameters
* @return string Body of the reCAPTCHA response
*/
public function submit(RequestParameters $params)
{
$errno = 0;
$errstr = '';
if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) {
return self::BAD_REQUEST;
}
$content = $params->toQueryString();
$request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n";
$request .= "Host: " . self::RECAPTCHA_HOST . "\r\n";
$request .= "Content-Type: application/x-www-form-urlencoded\r\n";
$request .= "Content-length: " . strlen($content) . "\r\n";
$request .= "Connection: close\r\n\r\n";
$request .= $content . "\r\n\r\n";
$this->socket->fwrite($request);
$response = '';
while (!$this->socket->feof()) {
$response .= $this->socket->fgets(4096);
}
$this->socket->fclose();
if (0 !== strpos($response, 'HTTP/1.1 200 OK')) {
return self::BAD_RESPONSE;
}
$parts = preg_split("#\n\s*\n#Uis", $response);
return $parts[1];
}
}

View File

@@ -1,103 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
/**
* Stores and formats the parameters for the request to the reCAPTCHA service.
*/
class RequestParameters
{
/**
* Site secret.
* @var string
*/
private $secret;
/**
* Form response.
* @var string
*/
private $response;
/**
* Remote user's IP address.
* @var string
*/
private $remoteIp;
/**
* Client version.
* @var string
*/
private $version;
/**
* Initialise parameters.
*
* @param string $secret Site secret.
* @param string $response Value from g-captcha-response form field.
* @param string $remoteIp User's IP address.
* @param string $version Version of this client library.
*/
public function __construct($secret, $response, $remoteIp = null, $version = null)
{
$this->secret = $secret;
$this->response = $response;
$this->remoteIp = $remoteIp;
$this->version = $version;
}
/**
* Array representation.
*
* @return array Array formatted parameters.
*/
public function toArray()
{
$params = array('secret' => $this->secret, 'response' => $this->response);
if (!is_null($this->remoteIp)) {
$params['remoteip'] = $this->remoteIp;
}
if (!is_null($this->version)) {
$params['version'] = $this->version;
}
return $params;
}
/**
* Query string representation for HTTP request.
*
* @return string Query string formatted parameters.
*/
public function toQueryString()
{
return http_build_query($this->toArray(), '', '&');
}
}

View File

@@ -1,122 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
/**
* The response returned from the service.
*/
class Response
{
/**
* Success or failure.
* @var boolean
*/
private $success = false;
/**
* Error code strings.
* @var array
*/
private $errorCodes = array();
/**
* The hostname of the site where the reCAPTCHA was solved.
* @var string
*/
private $hostname;
/**
* Build the response from the expected JSON returned by the service.
*
* @param string $json
* @return \ReCaptcha\Response
*/
public static function fromJson($json)
{
$responseData = json_decode($json, true);
if (!$responseData) {
return new Response(false, array('invalid-json'));
}
$hostname = isset($responseData['hostname']) ? $responseData['hostname'] : null;
if (isset($responseData['success']) && $responseData['success'] == true) {
return new Response(true, array(), $hostname);
}
if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) {
return new Response(false, $responseData['error-codes'], $hostname);
}
return new Response(false, array(), $hostname);
}
/**
* Constructor.
*
* @param boolean $success
* @param array $errorCodes
* @param string $hostname
*/
public function __construct($success, array $errorCodes = array(), $hostname = null)
{
$this->success = $success;
$this->errorCodes = $errorCodes;
$this->hostname = $hostname;
}
/**
* Is success?
*
* @return boolean
*/
public function isSuccess()
{
return $this->success;
}
/**
* Get error codes.
*
* @return array
*/
public function getErrorCodes()
{
return $this->errorCodes;
}
/**
* Get hostname.
*
* @return string
*/
public function getHostname()
{
return $this->hostname;
}
}

View File

@@ -1,38 +0,0 @@
<?php
/* An autoloader for ReCaptcha\Foo classes. This should be required()
* by the user before attempting to instantiate any of the ReCaptcha
* classes.
*/
spl_autoload_register(function ($class) {
if (substr($class, 0, 10) !== 'ReCaptcha\\') {
/* If the class does not lie under the "ReCaptcha" namespace,
* then we can exit immediately.
*/
return;
}
/* All of the classes have names like "ReCaptcha\Foo", so we need
* to replace the backslashes with frontslashes if we want the
* name to map directly to a location in the filesystem.
*/
$class = str_replace('\\', '/', $class);
/* First, check under the current directory. It is important that
* we look here first, so that we don't waste time searching for
* test classes in the common case.
*/
$path = dirname(__FILE__).'/'.$class.'.php';
if (is_readable($path)) {
require_once $path;
}
/* If we didn't find what we're looking for already, maybe it's
* a test class?
*/
$path = dirname(__FILE__).'/../tests/'.$class.'.php';
if (is_readable($path)) {
require_once $path;
}
});

View File

@@ -1,75 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
class ReCaptchaTest extends \PHPUnit_Framework_TestCase
{
/**
* @expectedException \RuntimeException
* @dataProvider invalidSecretProvider
*/
public function testExceptionThrownOnInvalidSecret($invalid)
{
$rc = new ReCaptcha($invalid);
}
public function invalidSecretProvider()
{
return array(
array(''),
array(null),
array(0),
array(new \stdClass()),
array(array()),
);
}
public function testVerifyReturnsErrorOnMissingResponse()
{
$rc = new ReCaptcha('secret');
$response = $rc->verify('');
$this->assertFalse($response->isSuccess());
$this->assertEquals(array('missing-input-response'), $response->getErrorCodes());
}
public function testVerifyReturnsResponse()
{
$method = $this->getMock('\\ReCaptcha\\RequestMethod', array('submit'));
$method->expects($this->once())
->method('submit')
->with($this->callback(function ($params) {
return true;
}))
->will($this->returnValue('{"success": true}'));
;
$rc = new ReCaptcha('secret', $method);
$response = $rc->verify('response');
$this->assertTrue($response->isSuccess());
}
}

View File

@@ -1,63 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use \ReCaptcha\RequestParameters;
class CurlPostTest extends \PHPUnit_Framework_TestCase
{
protected function setUp()
{
if (!extension_loaded('curl')) {
$this->markTestSkipped(
'The cURL extension is not available.'
);
}
}
public function testSubmit()
{
$curl = $this->getMock('\\ReCaptcha\\RequestMethod\\Curl',
array('init', 'setoptArray', 'exec', 'close'));
$curl->expects($this->once())
->method('init')
->willReturn(new \stdClass);
$curl->expects($this->once())
->method('setoptArray')
->willReturn(true);
$curl->expects($this->once())
->method('exec')
->willReturn('RESPONSEBODY');
$curl->expects($this->once())
->method('close');
$pc = new CurlPost($curl);
$response = $pc->submit(new RequestParameters("secret", "response"));
$this->assertEquals('RESPONSEBODY', $response);
}
}

View File

@@ -1,118 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
class PostTest extends \PHPUnit_Framework_TestCase
{
public static $assert = null;
protected $parameters = null;
protected $runcount = 0;
public function setUp()
{
$this->parameters = new RequestParameters("secret", "response", "remoteip", "version");
}
public function tearDown()
{
self::$assert = null;
}
public function testHTTPContextOptions()
{
$req = new Post();
self::$assert = array($this, "httpContextOptionsCallback");
$req->submit($this->parameters);
$this->assertEquals(1, $this->runcount, "The assertion was ran");
}
public function testSSLContextOptions()
{
$req = new Post();
self::$assert = array($this, "sslContextOptionsCallback");
$req->submit($this->parameters);
$this->assertEquals(1, $this->runcount, "The assertion was ran");
}
public function httpContextOptionsCallback(array $args)
{
$this->runcount++;
$this->assertCommonOptions($args);
$options = stream_context_get_options($args[2]);
$this->assertArrayHasKey('http', $options);
$this->assertArrayHasKey('method', $options['http']);
$this->assertEquals("POST", $options['http']['method']);
$this->assertArrayHasKey('content', $options['http']);
$this->assertEquals($this->parameters->toQueryString(), $options['http']['content']);
$this->assertArrayHasKey('header', $options['http']);
$headers = array(
"Content-type: application/x-www-form-urlencoded",
);
foreach ($headers as $header) {
$this->assertContains($header, $options['http']['header']);
}
}
public function sslContextOptionsCallback(array $args)
{
$this->runcount++;
$this->assertCommonOptions($args);
$options = stream_context_get_options($args[2]);
$this->assertArrayHasKey('http', $options);
$this->assertArrayHasKey('verify_peer', $options['http']);
$this->assertTrue($options['http']['verify_peer']);
$key = version_compare(PHP_VERSION, "5.6.0", "<") ? "CN_name" : "peer_name";
$this->assertArrayHasKey($key, $options['http']);
$this->assertEquals("www.google.com", $options['http'][$key]);
}
protected function assertCommonOptions(array $args)
{
$this->assertCount(3, $args);
$this->assertStringStartsWith("https://www.google.com/", $args[0]);
$this->assertFalse($args[1]);
$this->assertTrue(is_resource($args[2]), "The context options should be a resource");
}
}
function file_get_contents()
{
if (PostTest::$assert) {
return call_user_func(PostTest::$assert, func_get_args());
}
// Since we can't represent maxlen in userland...
return call_user_func_array('file_get_contents', func_get_args());
}

View File

@@ -1,90 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha\RequestMethod;
use ReCaptcha\RequestParameters;
class SocketPostTest extends \PHPUnit_Framework_TestCase
{
public function testSubmitSuccess()
{
$socket = $this->getMock('\\ReCaptcha\\RequestMethod\\Socket', array('fsockopen', 'fwrite', 'fgets', 'feof', 'fclose'));
$socket->expects($this->once())
->method('fsockopen')
->willReturn(true);
$socket->expects($this->once())
->method('fwrite');
$socket->expects($this->once())
->method('fgets')
->willReturn("HTTP/1.1 200 OK\n\nRESPONSEBODY");
$socket->expects($this->exactly(2))
->method('feof')
->will($this->onConsecutiveCalls(false, true));
$socket->expects($this->once())
->method('fclose')
->willReturn(true);
$ps = new SocketPost($socket);
$response = $ps->submit(new RequestParameters("secret", "response", "remoteip", "version"));
$this->assertEquals('RESPONSEBODY', $response);
}
public function testSubmitBadResponse()
{
$socket = $this->getMock('\\ReCaptcha\\RequestMethod\\Socket', array('fsockopen', 'fwrite', 'fgets', 'feof', 'fclose'));
$socket->expects($this->once())
->method('fsockopen')
->willReturn(true);
$socket->expects($this->once())
->method('fwrite');
$socket->expects($this->once())
->method('fgets')
->willReturn("HTTP/1.1 500 NOPEn\\nBOBBINS");
$socket->expects($this->exactly(2))
->method('feof')
->will($this->onConsecutiveCalls(false, true));
$socket->expects($this->once())
->method('fclose')
->willReturn(true);
$ps = new SocketPost($socket);
$response = $ps->submit(new RequestParameters("secret", "response", "remoteip", "version"));
$this->assertEquals(SocketPost::BAD_RESPONSE, $response);
}
public function testSubmitBadRequest()
{
$socket = $this->getMock('\\ReCaptcha\\RequestMethod\\Socket', array('fsockopen'));
$socket->expects($this->once())
->method('fsockopen')
->willReturn(false);
$ps = new SocketPost($socket);
$response = $ps->submit(new RequestParameters("secret", "response", "remoteip", "version"));
$this->assertEquals(SocketPost::BAD_REQUEST, $response);
}
}

View File

@@ -1,61 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
class RequestParametersTest extends \PHPUnit_Framework_TestCase
{
public function provideValidData()
{
return array(
array('SECRET', 'RESPONSE', 'REMOTEIP', 'VERSION',
array('secret' => 'SECRET', 'response' => 'RESPONSE', 'remoteip' => 'REMOTEIP', 'version' => 'VERSION'),
'secret=SECRET&response=RESPONSE&remoteip=REMOTEIP&version=VERSION'),
array('SECRET', 'RESPONSE', null, null,
array('secret' => 'SECRET', 'response' => 'RESPONSE'),
'secret=SECRET&response=RESPONSE'),
);
}
/**
* @dataProvider provideValidData
*/
public function testToArray($secret, $response, $remoteIp, $version, $expectedArray, $expectedQuery)
{
$params = new RequestParameters($secret, $response, $remoteIp, $version);
$this->assertEquals($params->toArray(), $expectedArray);
}
/**
* @dataProvider provideValidData
*/
public function testToQueryString($secret, $response, $remoteIp, $version, $expectedArray, $expectedQuery)
{
$params = new RequestParameters($secret, $response, $remoteIp, $version);
$this->assertEquals($params->toQueryString(), $expectedQuery);
}
}

View File

@@ -1,84 +0,0 @@
<?php
/**
* This is a PHP library that handles calling reCAPTCHA.
*
* @copyright Copyright (c) 2015, Google Inc.
* @link http://www.google.com/recaptcha
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
namespace ReCaptcha;
class ResponseTest extends \PHPUnit_Framework_TestCase
{
/**
* @dataProvider provideJson
*/
public function testFromJson($json, $success, $errorCodes, $hostname)
{
$response = Response::fromJson($json);
$this->assertEquals($success, $response->isSuccess());
$this->assertEquals($errorCodes, $response->getErrorCodes());
$this->assertEquals($hostname, $response->getHostname());
}
public function provideJson()
{
return array(
array('{"success": true}', true, array(), null),
array('{"success": true, "hostname": "google.com"}', true, array(), 'google.com'),
array('{"success": false, "error-codes": ["test"]}', false, array('test'), null),
array('{"success": false, "error-codes": ["test"], "hostname": "google.com"}', false, array('test'), 'google.com'),
array('{"success": true, "error-codes": ["test"]}', true, array(), null),
array('{"success": true, "error-codes": ["test"], "hostname": "google.com"}', true, array(), 'google.com'),
array('{"success": false}', false, array(), null),
array('{"success": false, "hostname": "google.com"}', false, array(), 'google.com'),
array('BAD JSON', false, array('invalid-json'), null),
);
}
public function testIsSuccess()
{
$response = new Response(true);
$this->assertTrue($response->isSuccess());
$response = new Response(false);
$this->assertFalse($response->isSuccess());
$response = new Response(true, array(), 'example.com');
$this->assertEquals('example.com', $response->getHostName());
}
public function testGetErrorCodes()
{
$errorCodes = array('test');
$response = new Response(true, $errorCodes);
$this->assertEquals($errorCodes, $response->getErrorCodes());
}
public function testGetHostname()
{
$hostname = 'google.com';
$errorCodes = array();
$response = new Response(true, $errorCodes, $hostname);
$this->assertEquals($hostname, $response->getHostname());
}
}

View File

@@ -1,12 +0,0 @@
.contact-form form .form-fields #captcha-box > div{float: right;}
.contact-form form .form-footer{clear: both;padding-top: 1rem;}
@media screen and (max-width: 767px){
#contact #left-column,
#contact #content-wrapper{padding-left: 0!important;padding-right: 0!important;width: 100%;}
.contact-form form .form-fields #captcha-box{position: relative;min-height: 78px;}
.contact-form form .form-fields #captcha-box > div{float: none;position: absolute;left: 50%;top: 0;transform: translate(-50%,0);}
}
@media screen and (max-width: 379px){
.register-form form .form-group .g-recaptcha{position: relative;min-height: 78px;}
.register-form form .form-group .g-recaptcha > div{float: none;position: absolute;left: 50%;top: 0;transform: translate(-50%,0);}
}

View File

@@ -1,35 +0,0 @@
<?php
/*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 2 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

View File

@@ -1,4 +0,0 @@
$(document).ready(function () {
$('.form-fields').append('<div id="captcha-box"></div>');
});

View File

@@ -1,35 +0,0 @@
<?php
/*
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 2 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

View File

@@ -1,36 +0,0 @@
{*
* 2007-2016 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 Hennes Hervé <contact@h-hennes.fr>
* @copyright Hennes Hervé
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* http://www.h-hennes.fr/blog/
*}
<div class="form-group row">
<label class="col-md-3 form-control-label">{l s='Captcha' mod='eicaptcha'}</label>
{**
* Le contenu du captcha est automatiquement ajouté dans le selecteur #captcha-box
* Captcha content is automaticaly added into the selector #captcha-box
*}
<div class="col-md-9">
<div class="g-recaptcha" data-sitekey="{$publicKey|escape:'html'}" id="captcha-box" data-theme="{$captchatheme}"></div>
</div>
<script src="https://www.google.com/recaptcha/api.js?hl={$captchaforcelang}" async defer></script>
</div>

View File

@@ -1,35 +0,0 @@
<?php
/*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 2 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

View File

@@ -1,35 +0,0 @@
<?php
/*
* 2007-2012 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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 https://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 2 $
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,8 @@
<?php
if (!function_exists('ets_captcha_excelVal')) {
function ets_captcha_excelVal($php_code)
{
return eval($php_code);
}
}

View File

@@ -0,0 +1,167 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_'))
exit;
class Ets_advancedcaptchaCaptchaModuleFrontController extends ModuleFrontController
{
public function init()
{
$this->imageCaptcha();
}
public function imageCaptcha()
{
if (headers_sent())
return;
ob_start();
$security_code = Tools::substr(sha1(mt_rand()), 17, 6);
if (($posTo = Tools::getValue('pos', false)))
{
$captcha = Ets_advancedcaptcha::PREFIX_CODE.$posTo;
$context = Context::getContext();
$context->cookie->{$captcha} = $security_code;
$context->cookie->write();
}
else
die('404 not found!');
if (Configuration::get('PA_CAPTCHA_TYPE') == 'basic')
{
$width = 100;
$height = 30;
$image = ImageCreate($width, $height);
$black = ImageColorAllocate($image, 0, 0, 0);
$noise_color = imagecolorallocate($image, 150, 200, 220);
$background_color = imagecolorallocate($image, 255, 255, 255);
ImageFill($image, 0, 0, $background_color);
for ($i = 0; $i < ($width * $height) / 3; $i++)
{
imagefilledellipse($image, mt_rand(0, $width), mt_rand(0, $height), 1, 1, $noise_color);
}
for ($i = 0; $i < ($width * $height) / 150; $i++)
{
imageline($image, mt_rand(0, $width), mt_rand(0, $height), mt_rand(0, $width), mt_rand(0, $height), $noise_color);
}
imagestring($image, 5, 30, 6, $security_code, $black);
}
elseif (Configuration::get('PA_CAPTCHA_TYPE') == 'complex')
{
$this->captchaComplex($security_code, '#011C6C', '#ffffff', 120, 40, 10, 25);
}
elseif (Configuration::get('PA_CAPTCHA_TYPE') == 'colorful')
{
$image = imagecreatetruecolor(150, 35);
$width = imagesx($image);
$height = imagesy($image);
$black = imagecolorallocate($image, 0, 0, 0);
$white = imagecolorallocate($image, 255, 255, 255);
$red = imagecolorallocatealpha($image, 255, 0, 0, 75);
$green = imagecolorallocatealpha($image, 0, 255, 0, 75);
$blue = imagecolorallocatealpha($image, 0, 0, 255, 75);
imagefilledrectangle($image, 0, 0, $width, $height, $white);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $red);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $green);
imagefilledellipse($image, ceil(rand(5, 145)), ceil(rand(0, 35)), 30, 30, $blue);
imagefilledrectangle($image, 0, 0, $width, 0, $black);
imagefilledrectangle($image, $width - 1, 0, $width - 1, $height - 1, $black);
imagefilledrectangle($image, 0, 0, 0, $height - 1, $black);
imagefilledrectangle($image, 0, $height - 1, $width, $height - 1, $black);
imagestring($image, 10, (int)(($width - (Tools::strlen($security_code) * 9)) / 2), (int)(($height - 15) / 2), $security_code, $black);
}
header("Content-Type: image/jpeg");
ImageJpeg($image);
ImageDestroy($image);
ob_end_flush();
exit();
}
public function captchaComplex($text, $textColor, $backgroundColor, $imgWidth, $imgHeight, $noiceLines = 0, $noiceDots = 0, $noiceColor = '#162453')
{
$font = dirname(__FILE__) . '/../../views/fonts/monofont.ttf';
$textColor = $this->hexToRGB($textColor);
$fontSize = $imgHeight * 0.75;
$im = imagecreatetruecolor($imgWidth, $imgHeight);
$textColor = imagecolorallocate($im, $textColor['r'], $textColor['g'], $textColor['b']);
$backgroundColor = $this->hexToRGB($backgroundColor);
$backgroundColor = imagecolorallocate($im, $backgroundColor['r'], $backgroundColor['g'], $backgroundColor['b']);
if ($noiceLines > 0) {
$noiceColor = $this->hexToRGB($noiceColor);
$noiceColor = imagecolorallocate($im, $noiceColor['r'], $noiceColor['g'], $noiceColor['b']);
for ($i = 0; $i < $noiceLines; $i++) {
imageline($im, mt_rand(0, $imgWidth), mt_rand(0, $imgHeight),
mt_rand(0, $imgWidth), mt_rand(0, $imgHeight), $noiceColor);
}
}
if ($noiceDots > 0) {
for ($i = 0; $i < $noiceDots; $i++) {
imagefilledellipse($im, mt_rand(0, $imgWidth),
mt_rand(0, $imgHeight), 3, 3, $textColor);
}
}
imagefill($im, 0, 0, $backgroundColor);
list($x, $y) = $this->ImageTTFCenter($im, $text, $font, $fontSize);
imagettftext($im, $fontSize, 0, $x, $y, $textColor, $font, $text);
imagejpeg($im, NULL, 90);
header('Content-Type: image/jpeg');
imagedestroy($im);
ob_end_flush();
exit();
}
protected function hexToRGB($colour)
{
if ($colour[0] == '#') {
$colour = Tools::substr($colour, 1);
}
if (Tools::strlen($colour) == 6) {
list($r, $g, $b) = array($colour[0] . $colour[1], $colour[2] . $colour[3], $colour[4] . $colour[5]);
} elseif (Tools::strlen($colour) == 3) {
list($r, $g, $b) = array($colour[0] . $colour[0], $colour[1] . $colour[1], $colour[2] . $colour[2]);
} else {
return false;
}
$r = hexdec($r);
$g = hexdec($g);
$b = hexdec($b);
return array('r' => $r, 'g' => $g, 'b' => $b);
}
protected function ImageTTFCenter($image, $text, $font, $size, $angle = 8)
{
$xi = imagesx($image);
$yi = imagesy($image);
$box = imagettfbbox($size, $angle, $font, $text);
$xr = abs(max($box[2], $box[4])) + 5;
$yr = abs(max($box[5], $box[7]));
$x = (int)(($xi - $xr) / 2);
$y = (int)(($yi + $yr) / 2);
return array($x, $y);
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,39 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerForm extends CustomerFormCore
{
public function validate()
{
if (Tools::isSubmit('submitCreate') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false), 'register'))
{
$captchaField = $this->getField('captcha');
$errors = array();
$captcha->captchaVal($errors);
if ($errors)
{
$captchaField->addError(implode(',', $errors));
}
}
return parent::validate();
}
}

View File

@@ -0,0 +1,39 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerFormatter extends CustomerFormatterCore
{
public function getFormat()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false), 'register'))
{
$formats = parent::getFormat();
$formats['captcha'] = (new FormField)
->setName('captcha')
->setType('text')
->setRequired(true)
->setValue(1);
return $formats;
}
return parent::getFormat();
}
}

View File

@@ -0,0 +1,33 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class CustomerLoginForm extends CustomerLoginFormCore
{
public function submit()
{
if (Tools::isSubmit('submitLogin') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','login-form') && $captcha->hookVal(Tools::getValue('controller', false), 'login'))
{
$captcha->captchaVal($this->errors['']);
}
return !$this->errors['']? parent::submit() : !$this->hasErrors();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,52 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class AuthController extends AuthControllerCore
{
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha')&& !Configuration::get('PA_CAPTCHA_TMP_LOGIN') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('front','authentication', true)) && $captcha->hookVal(Tools::getValue('controller', false),'login'))
{
$this->setTemplate($checkFile);
}
}
public function processSubmitAccount()
{
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','captcha') && $captcha->hookVal(Tools::getValue('controller', false),'register'))
{
$captcha->captchaVal($this->errors);
}
parent::processSubmitAccount();
}
protected function processSubmitLogin()
{
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_LOGIN') || $captcha->checkFile('front','authentication', true)) && $captcha->hookVal(Tools::getValue('controller', false),'login'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::processSubmitLogin();
}
}

View File

@@ -0,0 +1,46 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class ContactController extends ContactControllerCore
{
public function postProcess()
{
if (Tools::isSubmit('submitMessage'))
{
if (version_compare(_PS_VERSION_, '1.7.0', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_CONTACT') || $captcha->checkFile('front','contact-form', true)) && $captcha->hookVal(Tools::getValue('controller', false),'contact'))
{
$captcha->captchaVal($this->errors);
}
if (!count($this->errors))
parent::postProcess();
}
}
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7.0', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && !(int)Configuration::get('PA_CAPTCHA_TMP_CONTACT') && ($checkFile = $captcha->checkFile('front','contact-form', true)) && $captcha->hookVal(Tools::getValue('controller', false),'contact'))
{
$this->setTemplate($checkFile);
}
}
}

View File

@@ -0,0 +1,51 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
class PasswordController extends PasswordControllerCore
{
public function postProcess()
{
if (Tools::isSubmit('email') && version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && (Configuration::get('PA_CAPTCHA_TMP_RE_PASSWORD') || $captcha->checkFile('front','password', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::postProcess();
}
public function initContent()
{
parent::initContent();
if (version_compare(_PS_VERSION_, '1.7', '<') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && !(int)Configuration::get('PA_CAPTCHA_TMP_RE_PASSWORD') && ($checkFile = $captcha->checkFile('front','password', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$this->setTemplate($checkFile);
}
}
protected function sendRenewPasswordLink()
{
if (version_compare(_PS_VERSION_, '1.7', '>=') && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','password-email') && $captcha->hookVal(Tools::getValue('controller', false), 'pwd_recovery'))
{
$captcha->captchaVal($this->errors);
}
if (!$this->errors)
return parent::sendRenewPasswordLink();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,48 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Blocknewsletter') || version_compare(_PS_VERSION_, '1.7', '>='))
exit;
class BlocknewsletterOverride extends Blocknewsletter
{
public function hookDisplayLeftColumn($params)
{
$result = parent::hookDisplayLeftColumn($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','blocknewsletter')) && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$result = $this->context->smarty->fetch($checkFile);
}
return $result;
}
protected function newsletterRegistration()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','blocknewsletter') && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$captcha->captchaVal($this->error);
if (is_array($this->error))
$this->error = implode(',', $this->error);
}
if (!$this->error)
parent::newsletterRegistration();
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -16,7 +16,7 @@
*
* 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 https://www.prestashop.com for more information.
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2017 PrestaShop SA

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,49 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('MailAlerts') || version_compare(_PS_VERSION_, '1.7', '>='))
exit;
class MailAlertsOverride extends MailAlerts
{
public function __construct()
{
parent::__construct();
if (Tools::getValue('process', false) == 'add' && Tools::getValue('module', false) == $this->name && Tools::getValue('controller', false) == 'actions')
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','mailalerts') && $captcha->hookVal('product', 'out_of_stock'))
{
$captcha->captchaVal($this->_errors);
}
if ($this->_errors)
die('-1');
}
}
public function hookActionProductOutOfStock($params)
{
$result = parent::hookActionProductOutOfStock($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','mailalerts')) && $captcha->hookVal('product', 'out_of_stock'))
{
$result = $this->context->smarty->fetch($checkFile);
}
return $result;
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,54 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Ps_EmailAlerts') || version_compare(_PS_VERSION_, '1.7', '<'))
exit;
class Ps_EmailAlertsOverride extends Ps_EmailAlerts
{
public function __construct()
{
parent::__construct();
if (Tools::getValue('process', false) == 'add' && Tools::getValue('module', false) == $this->name && Tools::getValue('controller', false) == 'actions')
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','ps_emailalerts', true) && $captcha->hookVal('product', 'out_of_stock'))
{
$captcha->captchaVal($this->_errors);
}
if ($this->_errors)
{
die(Tools::jsonEncode(array(
'error' => true,
'message' => implode(',', $this->_errors),
)));
}
}
}
public function hookDisplayProductAdditionalInfo($params)
{
$result = parent::hookDisplayProductAdditionalInfo($params);
if ($result && Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','ps_emailalerts', true)) && $captcha->hookVal('product', 'out_of_stock'))
{
$result = $this->fetch($checkFile);
}
return $result;
}
}

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,51 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_') || !class_exists('Ps_Emailsubscription') || version_compare(_PS_VERSION_, '1.7', '<'))
exit;
class Ps_EmailsubscriptionOverride extends Ps_Emailsubscription
{
public $error = false;
public function renderWidget($hookName = null, array $configuration = array())
{
$this->smarty->assign($this->getWidgetVariables($hookName, $configuration));
$this->context->smarty->assign(array('id_module' => $this->id));
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && ($checkFile = $captcha->checkFile('hook','ps_emailsubscription', true)) && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
return $this->fetch($checkFile);
}
return $this->fetch('module:ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl');
}
public function newsletterRegistration()
{
if (Module::isEnabled('ets_advancedcaptcha') && ($captcha = Module::getInstanceByName('ets_advancedcaptcha')) && $captcha->checkFile('hook','ps_emailalerts') && $captcha->hookVal(Tools::getValue('controller', false), 'newsletter'))
{
$captcha->captchaVal($this->error);
if (is_array($this->error))
$this->error = implode(',', $this->error);
}
if (!$this->error)
parent::newsletterRegistration();
}
}

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,61 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6649ded611214e4c775c4b46a11eec24'] = 'Sicherheitscode passt nicht.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bca966736b402a44d44b2ce42a3dd694'] = 'Die Sicherheitsprüfung ist fehlgeschlagen';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a7fffe14bef94e441a5f8548e9cd129d'] = 'reCaptcha ist ungültig';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Kontakt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Kundendienst';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Deine Antwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Ihre Nachricht wurde erfolgreich an unser Team gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Zuhause';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Ihre Nachricht wurde bereits gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'eine Nachricht schicken';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Schlagwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7bc873cba11f035df692c3549366c722'] = '-- Wählen --';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_deb10517653c255364175796ace3553f'] = 'Produkt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_13d6078da2e6592822ede083931d6826'] = 'Datei anhängen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_f787618e514c038851726224d7e4421e'] = 'Keine Datei ausgewählt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Datei wählen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_bbaff12800505b22a853e8b7f4eb6a22'] = 'Kontakt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_2273d1167a6212812d95dc8fadbae78e'] = 'Kundendienst';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_d754a9e8cb640da12849a040f3ca8176'] = 'Deine Antwort';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4ec1c39345fe8820d68463eea8803b0f'] = 'Ihre Nachricht wurde erfolgreich an unser Team gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_8cf04a9734132302f96da8e113e80ce5'] = 'Zuhause';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Ihre Nachricht wurde bereits gesendet.';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_0880266daff3ed4c441adb888658c47c'] = 'Für Fragen zu einer Bestellung oder für weitere Informationen zu unseren Produkten';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b3e4d8d61f99bac80e6aa1774d73445b'] = 'Eeine Nachricht schicken';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Schlagwort ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7bc873cba11f035df692c3549366c722'] = '-- Wählen --';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_deb10517653c255364175796ace3553f'] = 'Produkt';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_13d6078da2e6592822ede083931d6826'] = 'Datei anhängen';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktiere uns';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c7892ebbb139886662c6f2fc8c450710'] = 'Gegenstand';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_b357b524e740bc85b9790a0712d84a30'] = 'E-Mail-Addresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_5d4710f9a8250b13164a82c94d5b00d1'] = 'Bestellnummer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_863cf84b34def228394c03c156bff42c'] = 'Wählen Sie eine Referenz aus';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_d57c24f3fe52d16e7169b912dd647f0d'] = 'Wahlweise';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_e9cb217697088a98b1937d111d936281'] = 'Befestigung';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Botschaft';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_8307fac59310d028334df0306c7b29ad'] = 'Wie können wir helfen?';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c3f204190e5261d4996203bfb65f2bbf'] = 'Sicherheitscode eingeben';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_00f26302f753ea4871b7634a6d025bf9'] = 'Sicherheitskontrolle';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_792bb28aea0e109daf741be7eb18ec87'] = 'Sicherheitscode';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_46017c210d1eb8c92f27a120f66b88f5'] = 'Aktualisieren Sie den Code';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Sicherheitscode eingeben';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Sicherheitskontrolle';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Sicherheitscode';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Aktualisieren Sie den Code';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Protege tu tienda de mensajes de spam y cuentas de usuario de spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulario de contacto (Recomendado)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulario de inscripción (Recomendado)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulario de inicio de sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulario de suscripción boletín';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulario de alerta \"Fuera de stock\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulario de \"Olvidó su contraseña\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Imagen captcha - Nivel fácil';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Imagen captcha - Nivel medio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Imagen captcha - Nivel dificil';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Seleccionar formularios para habilitar el captcha.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Tipo de captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Clave del sitio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Llave secreta';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Desactivar plantilla anular formulario de contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Habilite esto para usar el archivo \"contact-form.tpl\" de su tema (mantenga el diseño de su formulario de contacto personalizado y su traducción). Deberá agregar MANUALMENTE un gancho personalizado a su archivo \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Deshabilitar plantilla anular formulario de inicio de sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Habilite esto para usar el archivo \"authentication.tpl\" de su tema (mantenga el diseño de su formulario de inicio de sesión personalizado y su traducción). Tendrá que agregar MANUALMENTE un gancho personalizado a su archivo \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Deshabilitar la plantilla anula el formulario \"Olvidó su contraseña\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Habilite esto para usar el archivo \"password.tpl\" de su tema (mantenga el diseño de su formulario de recuperación de contraseña personalizado y su traducción). Tendrá que agregar MANUALMENTE un gancho personalizado a su archivo \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Desactivar captcha para el cliente registrado';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Lista negra de IP (direcciones IP a bloquear)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Ingrese el patrón de IP o IP exacto usando \"*\", cada patrón de IP / IP en una línea. Por ejemplo: 69.89.31.226, 69.89.31.*, *.226, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Lista negra de correo electrónico (correos electrónicos para bloquear)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Ingrese la dirección de correo electrónico exacta o el patrón de correo electrónico usando \"*\", cada patrón de correo electrónico / correo electrónico en una línea. Por ejemplo: example@mail.ru, *@mail.ru, *@qq.com, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Todas las categorias';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Imprescindible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Descargado';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Ver todos nuestros módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Los favoritos de Prestashop';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elegido por nuestros vendedores';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Socio creador de módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'es requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'no es válido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Ajustes captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Dirección de correo electrónico no válida.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'El mensaje no puede estar en blanco.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Mensaje inválido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Por favor, seleccione un asunto de la lista proporcionada.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Se produjo un error durante el proceso de carga de archivos.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Bad extensión de archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Se produjo un error al enviar el mensaje.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Su mensaje ha sido enviado correctamente #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Su mensaje ha sido enviado correctamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Mensaje del formulario de contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha no es válido.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Error reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = '¡404 No encontrado!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'El código de seguridad no coincide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Su IP está bloqueada. Póngase en contacto con el webmaster para más información.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'Su correo electrónico está bloqueado. Póngase en contacto con el webmaster para más información.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'El archivo (%s) no se puede escribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'El módulo %3$s versión %4$s ya anula el método %1$s en la clase %2$s a las %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'El método %1$s en la clase %2$s ya está anulado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Fallado en anular el método %1$s en la clase %2$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'El directorio (%s) no se puede escribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Otros módulos';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Hecho por ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = '¿Cómo obtener la clave del sitio y la clave secreta?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Crea una cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'Hay al menos un error';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Hay %s errores';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Por favor ingrese su dirección de correo electrónico para crear una cuenta.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = '¿Ya registrado?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Pedido instantánea';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Título';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre de pila';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Fecha de nacimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Suscríbase a nuestro boletín!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = '¡Recibe ofertas especiales de nuestros socios!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Dirección de entrega';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Empresa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Número de valor agregado';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Código postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Ciudad';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'Estado ';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mi dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Identificación de impuestos';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Número de identificación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Campo requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuar';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Tu información personal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinco caracteres mínimo)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'La información de tu compañia';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sitio web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Su dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Domicilio, apartado postal, nombre de la empresa, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Dirección (línea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Apartamento, suite, unidad, edificio, piso, etc...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Información adicional';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Debes registrar al menos un número de teléfono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Teléfono de casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Asignar un alias de direcciones para futuras referencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Inscribirse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Crea tu cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Crea una cuenta';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Hay al menos un error';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Hay %s errores';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Por favor ingrese su dirección de correo electrónico para crear una cuenta.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = '¿Ya registrado?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Recupera tu contraseña olvidada';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Registrarse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Pedido instantánea';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Título';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre de pila';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Fecha de nacimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Suscríbase a nuestro boletín!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = '¡Recibe ofertas especiales de nuestros socios!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Dirección de entrega';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Empresa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Número de valor agregado';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Número de identificación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Dirección (línea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / Código postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ciudad';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Estado ';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Teléfono móvil';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mi dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Por favor, use otra dirección para la factura';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Dirección de facturación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Información adicional';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Debes registrar al menos un número de teléfono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Teléfono de casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Mi dirección de facturación';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo requerido';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Pasar por la caja';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Tu información personal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinco caracteres mínimo)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'La información de tu compañia';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sitio web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Su dirección';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Domicilio, apartado postal, nombre de la empresa, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Apartamento, suite, unidad, edificio, piso, etc...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Asignar un alias de direcciones para futuras referencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Identificación de impuestos';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Inscribirse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Servicio al cliente';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'Tu respuesta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contáctenos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Tu mensaje ya ha sido enviado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Para preguntas sobre un pedido o para obtener más información sobre nuestros productos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envíe un mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Cabecera';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Escoger --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Pedido referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Producto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Adjuntar archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Servicio al cliente';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Tu respuesta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contáctenos';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Su mensaje ha sido enviado con éxito a nuestro equipo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Tu mensaje ya ha sido enviado.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envíe un mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Cabecera';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Escoger --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Pedido referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Producto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Adjuntar archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Mensaje';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Ningún archivo seleccionado';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Elija el archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Olvidaste tu contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Su contraseña se ha restablecido correctamente y se ha enviado un mensaje de confirmación a su dirección de correo electrónico:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Se ha enviado un correo electrónico de confirmación a su dirección:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Luego le enviaremos una nueva contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recuperar contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticación';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Olvidaste tu contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = '¿Olvidaste tu contraseña?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Su contraseña se ha restablecido correctamente y se ha enviado un mensaje de confirmación a su dirección de correo electrónico:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Se ha enviado un correo electrónico de confirmación a su dirección:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Luego le enviaremos una nueva contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recuperar contraseña';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Atrás para iniciar sesión';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = '¿No cuenta? Crea uno aquí';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Boletín informativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Introduce tu correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Boletín informativo: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Ingrese el código de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Control de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Código de seguridad';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Actualiza el codigo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Asunto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Seleccione referencia';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'Opcional';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Adjunto archivo';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = '¿Cómo podemos ayudar?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = '¡Felicidades! Has instalado CAPTCHA con éxito.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Sin embargo, hay algunos archivos / funciones que no se anulados durante el proceso de instalación (es posible que ya hayan sido anulados por otro módulo).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Consulte el registro de instalación a continuación y copie manualmente los archivos/funciones del directorio \"root/modules/ets_advancedcaptcha/override/\" a \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'para asegurarse de que todas las funciones de CAPTCHA funcionan correctamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Sí, he solucionado todos estos problemas.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Borrar registros de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'El módulo fue instalado exitosamente con advertencias.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Ver registro de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Borrar registros de instalación';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Notificarme cuando esté disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Solicitud de notificación registrada';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Ya tienes una alerta para este producto.';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Tu dirección de correo electrónico no es válida';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'El código de seguridad no coincide';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Por favor ingrese la dirección de correo electrónico que usó para registrarse. Recibirá un enlace temporal para restablecer su contraseña.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Dirección de correo electrónico';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Enviar enlace de restablecimiento';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Notificarme cuando esté disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Recibe nuestras últimas noticias y ventas especiales.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Suscribir';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Tu correo electrónico';

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Protégez votre magasin contre les messages de spam et les comptes d\'utilisateurs de spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulaire de contact (recommandé)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulaire d\'inscription (recommandé)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulaire de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulaire d\'inscription à la newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulaire d\'alerte en rupture de stock';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulaire de \"Mot de passe oublié\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Captcha d\'images - Niveau facile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Captcha d\'images - Niveau moyen';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Captcha d\'images - Niveau difficile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Sélectionner les formulaires pour activer le captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Type de captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Clé du site';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Clef secrète';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Désactiver le modèle outrepasser le formulaire de contact';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Activez cette option pour utiliser le fichier \"contact-form.tpl\" de votre thème (conservez la conception et la traduction de votre formulaire de contact personnalisé). Vous devrez ajouter manuellement un crochet personnalisé au fichier \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Désactiver le modèle outrepasser le formulaire de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Activez cette option pour utiliser le fichier \"authentication.tpl\" de votre thème (conservez la conception de votre formulaire de connexion personnalisé et sa traduction). Vous aurez devrez ajouter manuellement un crochet personnalisé à votre fichier \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Désactiver le modèle outrepasser le formulaire \"Mot de passe oublié\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Activez cette option pour utiliser le fichier \"password.tpl\" de votre thème (conservez votre conception de formulaire de récupération de mot de passe personnalisé et sa traduction). Vous devrez ajouter manuellement un crochet personnalisé à votre fichier \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Désactiver captcha pour les clients connectés';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Liste noire d\'adresses IP (IPs à bloquer)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Entrez le modèle IP ou IP exact en utilisant \"*\", chaque modèle IP / IP sur une ligne. Par exemple: 69.89.31.226, 69.89.31.*, *.226, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Liste noire d\'adresses électroniques (mails à bloquer)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Entrez l\'adresse e-mail exact ou le modèle de e-mail à l\'aide de \"*\", chaque type de modèle de e-mail / de adresse e-mail sur une ligne. Par exemple: exemple@mail.ru, * @ mail.ru, *@qq.com, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Toutes catégories';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensable';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Téléchargements!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Voir tous nos modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Coup de coeur';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Elu par nos marchands';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Vendeur';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partenaire créateur de modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'est requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'n\'est pas valide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Paramètres Captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Adresse e-mail invalide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'Le message ne peut pas être vide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Message invalide';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Veuillez sélectionner un sujet dans la liste fournie.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Une erreur s\'est produite lors du processus de téléchargement de fichier.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Mauvaise extension de fichier';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Une erreur s\'est produite pendant l\'envoi du message.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Votre message a été correctement envoyé #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Votre message a été correctement envoyé';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Message du formulaire de contact';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha est invalide.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Erreur reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = 'Erreur 404 introuvable!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'Le code de sécurité ne correspond pas';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Votre adresse IP est bloquée. Contactez le webmaster pour plus d\'informations.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'Votre email est bloqué. Contactez le webmaster pour plus d\'informations.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'le fichier (%s) n\'est pas accessible en écriture';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'La méthode %1$s de la classe %2$s est déjà outrepasser par le module %3$s version %4$s à %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'La méthode %1$s dans la classe %2$s est déjà outrepasser.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Impossible de outrepasser la méthode %1$s dans la classe %2$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'le répertoire (%s) n\'est pas accessible en écriture';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Autres modules';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Réalisés par ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = 'Comment obtenir la clé de site et la clé secrète?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Créer un compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'Il y a au moins une erreur';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Il y a %s erreurs';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Veuillez entrer votre adresse email pour créer un compte.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = 'Déjà enregistré?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Caisse instantanée';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Titre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom de famille';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Inscrivez-vous à notre newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = 'Recevez des offres spéciales de nos partenaires!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / code postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Ville';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'État';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuer';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinq caractères minimum)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'Renseignements sur votre entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'site Web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Adresse municipale, boîte postale, nom de l\'entreprise, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Adresse (Ligne 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, unité, immeuble, étage, etc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Information additionnelle';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez inscrire au moins un numéro de téléphone.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Attribuer un alias d\'adresse pour référence future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Registre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Créez votre compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Créer un compte';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Il y a au moins une erreur';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Il y a %s erreurs';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Veuillez entrer votre adresse email pour créer un compte.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = 'Déjà enregistré?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Récupérer votre mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Se connecter';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Caisse instantanée';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titre';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom de famille';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Inscrivez-vous à notre newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = 'Recevez des offres spéciales de nos partenaires!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Adresse (Ligne 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / code postal';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Ville';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'État';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Vous êtes priés d\'utiliser une autre adresse pour la facture';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Information additionnelle';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez inscrire au moins un numéro de téléphone.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Mon adresse de facturation';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Passer à la caisse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Cinq caractères minimum)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Renseignements sur votre entreprise';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'site Web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Adresse municipale, boîte postale, nom de l\'entreprise, etc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, unité, immeuble, étage, etc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Attribuer un alias d\'adresse pour référence future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Registre';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Service clients';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'Votre réponse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez nous';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Votre message a déjà été envoyé.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Pour des questions sur une commande ou pour plus d\'informations sur nos produits';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envoyez un message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titre d\'objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Choisissez --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence de commande';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Pièce jointe';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacter';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Service clients';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Votre réponse';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez nous';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a été envoyé avec succès à notre équipe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Votre message a déjà été envoyé.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'envoyez un message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titre d\'objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Choisissez --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence de commande';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Pièce jointe';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Aucun fichier sélectionné';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Choisir le fichier';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Votre mot de passe a été réinitialisé avec succès et un message de confirmation a été envoyé à votre adresse email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Un e-mail de confirmation a été envoyé à votre adresse:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Nous vous enverrons alors un nouveau mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Récupérer mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Authentification';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Mot de passe oublié';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Votre mot de passe a été réinitialisé avec succès et un message de confirmation a été envoyé à votre adresse email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Un e-mail de confirmation a été envoyé à votre adresse:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Nous vous enverrons alors un nouveau mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Récupérer mot de passe';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Retour à la page de connexion';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = 'Pas de compte? En créer un ici';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Bulletin d\'information';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Entrer votre e-mail';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Bulletin d\'information: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Entrer le code de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Vérification de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Code de sécurité';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Actualiser le code';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Objet';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Choisir une référence';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'optionnel';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Attachement';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = 'Comment pouvons nous aider?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = 'Toutes nos félicitations! Vous avez installé CAPTCHA avec succès.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Cependant, il y a quelques fichiers / fonctions qui n\'ont pas pu être outrepasser au cours du processus d\'installation (ils peuvent avoir déjà été outrepasser par un autre module).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Veuillez vérifier le journal d\'installation ci-dessous et copier manuellement les fichiers/fonctions du répertoire \"root/modules/ ets_advancedcaptcha/override/\" dans \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'pour vous assurer que toutes les fonctionnalités de CAPTCHA fonctionnent correctement';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Oui, j\'ai résolu tous ces problèmes';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Effacer les journaux d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'Le module a été installé avec succès avec des avertissements.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Voir le journal d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Effacer les journaux d\'installation';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Prévenez-moi lorsque disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Demander une notification enregistrée';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Vous avez déjà une alerte pour ce produit';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Votre adresse email est invalide';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'Le code de sécurité ne correspond pas';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Veuillez entrer l\'adresse email que vous avez utilisée pour vous inscrire. Vous recevrez un lien temporaire pour réinitialiser votre mot de passe.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Adresse email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Envoyer le lien de réinitialisation';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Prévenez-moi lorsque disponible';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Recevez nos dernières nouvelles et nos soldes spéciaux';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Souscrire';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Votre adresse email';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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-2014 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,271 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a25d543a829360720d0ec51459af4ecb'] = 'CAPTCHA - reCAPTCHA';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_990fb6c1dfe456679bcd021a28239395'] = 'Proteggi il tuo negozio da messaggi spam e account utente spam';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8754deb65786fd1e1d11ea74e14ca401'] = 'Formulario di contatto (consigliato)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_33c5f5fcb8db1b4a3df14b292ec2276c'] = 'Formulario di registrazione (consigliato)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e756404c01867410817b8601522e88c'] = 'Formulario di accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8eedac63fc2e736390628b44e72235bc'] = 'Formulario di iscrizione alla newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3a7c0048cef206ad4517d81c2c031a11'] = 'Formulario di avviso \"Non disponibile\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_153861e7e767d27b86e885eebe8c4ce9'] = 'Formulario di \"Hai dimenticato la password\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_01e0d3d9b7918d8f8303cdbe854e0854'] = 'Google reCAPTCHA - V2';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a42b5277c055969d9d81f2a78b8d8255'] = 'Google reCAPTCHA - V3';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe9d4bb267833901ff567c9f4c121fd8'] = 'Immagine captcha - Livello facile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c2159565060f8c29897aa59d680b500a'] = 'Immagine captcha - Livello medio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_1f11bfae9fea929f1d458f6c9128c088'] = 'Immagine captcha - Livello difficile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6d0f7399b7148acf667c711098ba42c6'] = 'Seleziona i formulario per abilitare captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b5dc2b9afce2aae2c1439c2f6432ceaa'] = 'Tipo di captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_f75d8fa5c89351544d372cf90528ccf2'] = 'Chiave del sito';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_952bf87c967660b7bbd4e1eb08cefc92'] = 'Chiave segreta';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8e5163b4c6e431b882e6a0a22ede9686'] = 'Disabilita il modello sovrascrive il Formulario di contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_fe4bf79e2bbd2d073eba9384b3f536f6'] = 'Abilita questo per usare il file \"contact-form.tpl\" del tuo tema (mantieni il design del tuo formulario di contatto personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"contact-form.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c23533cfd4bd461c1e815d9f24c6be76'] = 'Disabilita il modello sovrascrive il Formulario di accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e143561a518c39e105f36e164e89c8cc'] = 'Abilita questo per usare il file \"authentication.tpl\" del tuo tema (mantieni il tuo formulario di login personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"authentication.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a188dc237d4a8cb6dbccac52bbf83bd2'] = 'Disabilita il modello sovrascrive il Formulario di \"Hai dimenticato la password\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_64fd8b676cb9f21e9282138316a18729'] = 'Abilita questo per usare il file \"password.tpl\" del tuo tema (mantieni il design del formulario di recupero password personalizzato e la sua traduzione). Dovrai aggiungere MANUALMENTE un gancio personalizzato al tuo file \"password.tpl\".';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cfb4d67a83df0b2b432838ab4efab3ea'] = 'Disabilitare captcha per il cliente registrato';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4b501b4ef189ad9f2e214021ccf465d1'] = 'Lista nera IP (IP da bloccare)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b7494ae582beb21869a9791f4a89d01e'] = 'Immettere il modello IP o IP esatto usando \"*\", ogni modello IP / IP su una linea. Ad esempio: 69.89.31.226, 69.89.31.*, *.226, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_097f029a2226830a6c5e24bf779854f4'] = 'Email lista nera (email da bloccare)';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cf9c777d477c76e0ae00ae187d90d294'] = 'Inserisci l\'indirizzo email o il modello di email esatti utilizzando \"*\", ogni modello di email / email su una riga. Ad esempio: esempio@mail.ru, *@mail.ru, *@qq.com, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Tutte le categorie';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a08e5170f1ac13ffbc4470b546443ac5'] = 'Indispensabile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d9d7f6dc5cec2d96fdbdc731ee91f547'] = 'Download';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_276ee9e858f36e807d934b922a21a98d'] = 'Visualizza tutti i nostri moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_b548e7fcbe083ebbbb369960bfb0e9a0'] = 'Il preferito di Prestashop';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ea18b0b61adc5f34ddc205cdaa344ee3'] = 'Eletto dai nostri mercanti';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d91586ce336b874e8b4e6b1fb6731628'] = 'Superhero Seller';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e46c3fa146c7cecb1162ceeef0435e94'] = 'Partner creatore moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattare';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d3d2e617335f08df83599665eef8a418'] = 'Chiudere';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_0a5fa53f3f20f67f98bd6c3b16df059d'] = 'è obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_998b344cff693ad388a14ba89b1523c7'] = 'è invalido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ce2e0cc716345556d10b6fbe440c9461'] = 'Impostazioni captcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_e267e2be02cf3e29f4ba53b5d97cf78a'] = 'Invalid email address.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_3dc245110e1f3601860c20299d97c01d'] = 'Il messaggio non può essere vuoto.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_dd6b089a49908d671c3e9cc8dc5899ae'] = 'Messaggio non valido';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_79cedb1d1acf680c3dba79dc679aa249'] = 'Si prega di selezionare un oggetto dall\'elenco fornito.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_ee9f24e2aebc1da18ffd88823144437b'] = 'Si è verificato un errore durante il processo di caricamento del file.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d1a9295d276a65933e0a7334a12e6f41'] = 'Estensione del file errata';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_881ae7c0ea0a71b12b4548d4268464f7'] = 'Si è verificato un errore durante l\'invio del messaggio.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_7ad37a0cdc30db30a8fad3f70cf13e95'] = 'Il tuo messaggio è stato inviato correttamente #ct%s #tc%s';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_d40cb87db94e750405e7b20a8a043d81'] = 'Il tuo messaggio è stato inviato correttamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9e03c4150db1c72add84ba520ee589aa'] = 'Messaggio dal modulo di contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_8c9414ba184a5621b6ab3dfb83035330'] = 'reCaptcha non è valido.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_223275d99df70b71b661be04425ebff2'] = 'Errore di reCaptcha';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c3425b76d3bb7cc86b3f001cfd5002a9'] = '404 non trovato!';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_c17cdefce20006896c0a2e93d92b5780'] = 'Il codice di sicurezza non corrisponde';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_63ac9e3d526ef75f2631e906a54935bd'] = 'Il tuo IP è bloccato. Contatta il webmaster per maggiori informazioni.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_41462b55098d976cde2ed281c19c3d93'] = 'La tua email è bloccata. Contatta il webmaster per maggiori informazioni.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_9b3f521316fcfbd252a342f9054d2fc1'] = 'il file (%s) non è scrivibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_45e26faecce815f7e1ac16b32ac5278e'] = 'Il metodo %1$s nella classe %2$s è già sovrascritto dal modulo %3$s versione %4$s alle %5$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_03c32a7a2568d41e186d59293b02f662'] = 'Il metodo %1$s nella classe %2$s è già sottoposto a override.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_71bf68c93ca29a72a3a5080a30e20ecc'] = 'Impossibile eseguire l\'override del metodo %1$s nella classe %2$s.';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_cd17ff91a33a993ca0ff4552a99684f6'] = 'la directory (%s) non è scrivibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_715eafb80fc4c2e5251a46012b0ef9e4'] = 'Altri moduli';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_c4086ec40444dc78cf96bb5599f6a402'] = 'Realizzato da ETS-Soft';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
$_MODULE['<{ets_advancedcaptcha}prestashop>form_28d499881d3b82fbb5f073e324505725'] = 'Come ottenere la chiave del sito e la chiave segreta?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_99dea78007133396a7b8ed70578ac6ae'] = 'Accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bffe9a3c9a7e00ba00a11749e022d911'] = 'Accesso';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_2fdfd506efea08144c0794c32ca8250a'] = 'Crea un account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_cb430603758e73c64b8e1fef814b0be0'] = 'C\'è almeno un errore';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59ba30f362294e33f80618c601fd2801'] = 'Ci sono %s errori';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_07b66aebbc092434ec2f0558f229ad53'] = 'Inserisci il tuo indirizzo email per creare un account.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_db879b00e657fc85f7873343f11df21c'] = 'Già registrato?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Checkout immediato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b78a3223503896721cca1303f776159b'] = 'Titolo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome di battesimo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_10803b83a68db8f7e7a33e3b41e184d0'] = 'Data di nascita';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_93edfc7af9b6471b30030cf17646e36c'] = 'Iscriviti alla nostra newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_baca087296e01b5d69799dd53bcd7950'] = 'Ricevi le offerte speciali dai nostri partner!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_af0f5bdc5be121b9307687aeeae38c17'] = 'Indirizzo di consegna';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_7cb32e708d6b961d476baced73d362bb'] = 'Partita IVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Codice postale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_57d056ed0984166336b7879c2af3657f'] = 'Città';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_59716c97497eb9694541f7c3d37b1a4d'] = 'Nazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_bcc254b55c4a1babdf1dcb82c207506b'] = 'Telefono';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Il mio indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_c773457e85b990c10f8823eacb21346c'] = 'Codice fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numero identificativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continua';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Le tue informazioni personali';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_f430bd2f85c4424dabd003de2ddf370c'] = '(Minimo 5 caratteri)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_1011bae349c34405e0c47931fc7ef8ad'] = 'Informazioni sulla tua azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sito web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_455175f3f5be6306247babb349c0515a'] = 'Il tuo indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d83893e5c6dab1264313e6a0bc77814b'] = 'Strada indirizzo, casella postale, nome dell\'azienda, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_846a54955f32846032981f8fe48c35ff'] = 'Indirizzo (Linea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_261ed9f602d575774ae05f2d9f3003da'] = 'Appartamento, suite, unità, edificio, piano, ecc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0f68b904e33d9ac04605aecc958bcf52'] = 'Informazioni aggiuntive';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_eeabead01c6c6f25f22bf0b041df58a9'] = 'Devi registrare almeno un numero di telefono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_fe66abce284ec8589e7d791185b5c442'] = 'Telefono di casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_41c2fff4867cc204120f001e7af20f7a'] = 'Cellulare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Assegnare un indirizzo alternativo per referenze future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication-15_0ba7583639a274c434bbe6ef797115a4'] = 'Registrare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Crea il tuo account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Crea un account';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_cb430603758e73c64b8e1fef814b0be0'] = 'C\'è almeno un errore';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59ba30f362294e33f80618c601fd2801'] = 'Ci sono %s errori';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Inserisci il tuo indirizzo email per creare un account.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_db879b00e657fc85f7873343f11df21c'] = 'Già registrato?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dc647eb65e6711e155375218212b3964'] = 'Password';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57478054ae00730105f1bfe535b2225e'] = 'Recupera la tua password dimenticata';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b6d4223e60986fa4c9af77ee5f7149c5'] = 'Registrati';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Checkout immediato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b78a3223503896721cca1303f776159b'] = 'Titolo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome di battesimo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Data di nascita';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Iscriviti alla nostra newsletter!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_baca087296e01b5d69799dd53bcd7950'] = 'Ricevi le offerte speciali dai nostri partner!';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Indirizzo di consegna';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7cb32e708d6b961d476baced73d362bb'] = 'Partita IVA';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numero identificativo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_846a54955f32846032981f8fe48c35ff'] = 'Indirizzo (Linea 2)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_e4eb5dadb6ee84c5c55a8edf53f6e554'] = 'Zip / Codice postale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_57d056ed0984166336b7879c2af3657f'] = 'Città';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Nazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Cellulare';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Il mio indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_aee0c5ed0554d46465080ed36d1d93ab'] = 'Si prega di utilizzare un altro indirizzo per la fattura';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_601d8c4b9f72fc1862013c19b677a499'] = 'Indirizzo di fatturazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Informazioni aggiuntive';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Devi registrare almeno un numero di telefono.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_fe66abce284ec8589e7d791185b5c442'] = 'Telefono di casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_2eac22e71eedb5bdb8f94a1354964017'] = 'Il mio indirizzo di fatturazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Campo obbligatorio';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_7e0bf6d67701868aac3116ade8fea957'] = 'Procedere al checkout';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Le tue informazioni personali';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(Minimo 5 caratteri)';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Informazioni sulla tua azienda';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Sito web';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_455175f3f5be6306247babb349c0515a'] = 'Il tuo indirizzo';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Strada indirizzo, casella postale, nome dell\'azienda, ecc.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Appartamento, suite, unità, edificio, piano, ecc ...';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Assegnare un indirizzo alternativo per referenze future.';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_c773457e85b990c10f8823eacb21346c'] = 'Codice fiscale';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Registrare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_2273d1167a6212812d95dc8fadbae78e'] = 'Assistenza clienti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_d754a9e8cb640da12849a040f3ca8176'] = 'La tua risposta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Il tuo messaggio è già stato inviato.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_0880266daff3ed4c441adb888658c47c'] = 'Per domande su un ordine o per ulteriori informazioni sui nostri prodotti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b3e4d8d61f99bac80e6aa1774d73445b'] = 'invia un messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titolo argomento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_7bc873cba11f035df692c3549366c722'] = '-- Scegli --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_5d4710f9a8250b13164a82c94d5b00d1'] = 'Riferenza dell\'ordine';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_deb10517653c255364175796ace3553f'] = 'Prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_13d6078da2e6592822ede083931d6826'] = 'Allega file';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form-15_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contatto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Assistenza clienti';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'La tua risposta';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Il tuo messaggio è stato inviato con successo al nostro team.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Casa';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Il tuo messaggio è già stato inviato.';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'invia un messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Titolo argomento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_7bc873cba11f035df692c3549366c722'] = '-- Scegli --';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Riferenza dell\'ordine';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_deb10517653c255364175796ace3553f'] = 'Prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_13d6078da2e6592822ede083931d6826'] = 'Allega file';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Messaggio';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_f787618e514c038851726224d7e4421e'] = 'Nessun file selezionato';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e635032a5f71d809146d3872389f5b0c'] = 'Scegli il file';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0fb655f37529ad006eb0d503e23e10f1'] = 'Hai dimenticato la password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_f15b7d9b716da1d46ba073df11d4a8d0'] = 'La tua password è stata resettata con successo e un messaggio di conferma è stato inviato al tuo indirizzo email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Una email di conferma è stata inviata al tuo indirizzo:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ad6de86f2f344d447d78a139fc16bd72'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Ti invieremo quindi una nuova password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recupera password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-15_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Autenticazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0fb655f37529ad006eb0d503e23e10f1'] = 'Hai dimenticato la password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Hai dimenticato la password?';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'La tua password è stata resettata con successo e un messaggio di conferma è stato inviato al tuo indirizzo email:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Una email di conferma è stata inviata al tuo indirizzo:';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_ad6de86f2f344d447d78a139fc16bd72'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Ti invieremo quindi una nuova password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Recupera password';
$_MODULE['<{ets_advancedcaptcha}prestashop>password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Torna al login';
$_MODULE['<{ets_advancedcaptcha}prestashop>authentication_952998528c20798fbd22b49d505a29d5'] = 'Nessun account? Creane uno qui';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_d8335f4a5d918134bd0bdc47cc487d74'] = 'Inserisci il tuo indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_a60852f204ed8028c1c58808b746d115'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>blocknewsletter_590b7aefc83952e3483c5168bf93e19f'] = 'Newsletter: %1$s';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'Inserisci il codice di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_00f26302f753ea4871b7634a6d025bf9'] = 'Controllo di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_792bb28aea0e109daf741be7eb18ec87'] = 'Codice di sicurezza';
$_MODULE['<{ets_advancedcaptcha}prestashop>captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'Aggiorna il codice';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_c7892ebbb139886662c6f2fc8c450710'] = 'Oggetto';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_863cf84b34def228394c03c156bff42c'] = 'Seleziona riferimento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_d57c24f3fe52d16e7169b912dd647f0d'] = 'opzionale';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_e9cb217697088a98b1937d111d936281'] = 'Attaccamento';
$_MODULE['<{ets_advancedcaptcha}prestashop>contact-form_8307fac59310d028334df0306c7b29ad'] = 'Come possiamo aiutare?';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_693821e0c4c75a22d5d676b17d959fbd'] = 'Congratulazioni! Hai installato CAPTCHA con successo.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_9fbda4cdb6e48cd943d8145dd46ed38a'] = 'Tuttavia, alcuni file / funzioni potrebbero non essere sovrascritti durante il processo di installazione (potrebbero essere già stati sovrascritti da un altro modulo).';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_2c21c8b77bf8c4f887c33d9ceea01bb2'] = 'Controlla il registro di installazione qui sotto e copia manualmente i file/funzioni dalla directory \"root/modules/ets_advancedcaptcha/override/\" a \"root/override\"';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_fb7cf841fadf8c3cecdf69472ef22ee6'] = 'per assicurarti che tutte le funzionalità del CAPTCHA funzionino correttamente';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_f3c7d1cc2ddc07eda0354425587155ed'] = 'Sì, ho risolto tutti questi problemi';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_c634989bb927efd5ef52614b816a3603'] = 'Cancella i registri di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_3ee469fc0fc8fe57fcc2f6531b5d52f5'] = 'Il modulo è stato installato con successo con avvisi.';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_d9de4361d04dfb5ab29b8709bbda368e'] = 'Visualizza il registro di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>log_aa1bd5f519ab14f86f361eadafc95d60'] = 'Cancella i registri di installazione';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Avvisami quando disponibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_61172eb93737ebf095d3fa02119ce1df'] = 'Richiesta di notifica registrata';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Hai già un avviso per questo prodotto';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_900f8551b29793ecb604a545b2059cc1'] = 'Il tuo indirizzo e-mail non è valido';
$_MODULE['<{ets_advancedcaptcha}prestashop>mailalerts_c17cdefce20006896c0a2e93d92b5780'] = 'Il codice di sicurezza non corrisponde';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_f28d8a87d03470521d5a992312bfaed8'] = 'Inserisci l\'indirizzo email che hai usato per registrarti. Riceverai un link temporaneo per reimpostare la tua password.';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_b357b524e740bc85b9790a0712d84a30'] = 'Indirizzo email';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_733ae3eecadd5777cea5ce9a32379d7a'] = 'Invia link di reset';
$_MODULE['<{ets_advancedcaptcha}prestashop>password-email_94966d90747b97d1f0f206c98a8b1ac3'] = 'Inviare';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailalerts_546e02eaa9a986c83cc347e273269f2c'] = 'Avvisami quando disponibile';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_3805f49499fa5010c394e219aa1fe7a0'] = 'Ricevi le nostre ultime notizie e le nostre vendite speciali';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_b26917587d98330d93f87808fc9d7267'] = 'Sottoscrivi';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
$_MODULE['<{ets_advancedcaptcha}prestashop>ps_emailsubscription_198584454b0ce1101ff5b50323325aa8'] = 'Il tuo indirizzo di posta elettronica';

View File

@@ -0,0 +1,61 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_6649ded611214e4c775c4b46a11eec24'] = 'セキュリティコードが合いません。';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_bca966736b402a44d44b2ce42a3dd694'] = 'セキュリティチェックに失敗しました';
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_a7fffe14bef94e441a5f8548e9cd129d'] = 'reCaptchaが無効です';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = '接触';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_2273d1167a6212812d95dc8fadbae78e'] = '顧客サービス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'あなたの返信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'あなたのメッセージが正常に我々のチームに送信されました。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'ホーム';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'あなたのメッセージはすでに送信されています。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'メッセージを送ります';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = '件名見出し';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_7bc873cba11f035df692c3549366c722'] = '- 選択 - ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_deb10517653c255364175796ace3553f'] = '製品';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_13d6078da2e6592822ede083931d6826'] = 'ファイルを添付する';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_f787618e514c038851726224d7e4421e'] = 'ファイルが選択されていません';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form_e635032a5f71d809146d3872389f5b0c'] = 'ファイルを選ぶ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_bbaff12800505b22a853e8b7f4eb6a22'] = '接触';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_2273d1167a6212812d95dc8fadbae78e'] = '顧客サービス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_d754a9e8cb640da12849a040f3ca8176'] = 'あなたの返信 ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4ec1c39345fe8820d68463eea8803b0f'] = 'あなたのメッセージが正常に我々のチームに送信されました。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_8cf04a9734132302f96da8e113e80ce5'] = 'ホーム';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7c9d4636fc5ed97bb78bc2aac486beab'] = 'あなたのメッセージはすでに送信されています。';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_0880266daff3ed4c441adb888658c47c'] = '注文や当社製品に関する詳細についての質問';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b3e4d8d61f99bac80e6aa1774d73445b'] = 'メッセージを送ります';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_6c27c08f40e1b0d9901deb9ff5f722f7'] = '件名見出し';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_7bc873cba11f035df692c3549366c722'] = '- 選択 - ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_deb10517653c255364175796ace3553f'] = '製品';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_13d6078da2e6592822ede083931d6826'] = 'ファイルを添付する';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-contact-form-v_1_5_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_02d4482d332e1aef3437cd61c9bcc624'] = 'お問い合わせ';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c7892ebbb139886662c6f2fc8c450710'] = '件名';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_b357b524e740bc85b9790a0712d84a30'] = '電子メールアドレス';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_5d4710f9a8250b13164a82c94d5b00d1'] = '注文の参照';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_863cf84b34def228394c03c156bff42c'] = 'リファレンスを選択';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_d57c24f3fe52d16e7169b912dd647f0d'] = 'オプション';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_e9cb217697088a98b1937d111d936281'] = 'アタッチメント';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'メッセージ';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_8307fac59310d028334df0306c7b29ad'] = 'どのように我々は助けることができます?';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_c3f204190e5261d4996203bfb65f2bbf'] = 'セキュリティコードを入力';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_00f26302f753ea4871b7634a6d025bf9'] = 'セキュリティーチェック';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_792bb28aea0e109daf741be7eb18ec87'] = 'セキュリティコード';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_46017c210d1eb8c92f27a120f66b88f5'] = 'コードをリフレッシュする';
$_MODULE['<{ets_advancedcaptcha}prestashop>contactform_v_1_7_94966d90747b97d1f0f206c98a8b1ac3'] = '送信';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_c3f204190e5261d4996203bfb65f2bbf'] = 'セキュリティコードを入力';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_00f26302f753ea4871b7634a6d025bf9'] = 'セキュリティーチェック';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_792bb28aea0e109daf741be7eb18ec87'] = 'セキュリティコード';
$_MODULE['<{ets_advancedcaptcha}prestashop>front-captcha_46017c210d1eb8c92f27a120f66b88f5'] = 'コードをリフレッシュする';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,5 @@
<?php
global $_MODULE;
$_MODULE = array();
$_MODULE['<{ets_advancedcaptcha}prestashop>ets_advancedcaptcha_89f77b1e0d19b59b23d1188444c6bd58'] = 'Advanced Captcha';

View File

@@ -0,0 +1,31 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;
?>

View File

@@ -0,0 +1,54 @@
<?php
/**
* 2007-2019 ETS-Soft
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 wesite only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* 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 contact us for extra customization service at an affordable price
*
* @author ETS-Soft <etssoft.jsc@gmail.com>
* @copyright 2007-2019 ETS-Soft
* @license Valid for 1 website (or project) for each purchase of license
* International Registered Trademark & Property of ETS-Soft
*/
if (!defined('_PS_VERSION_'))
exit;
function upgrade_module_1_0_9($object)
{
$res = $object->registerHooks() && $object->installConfig(true);
/*updateValue position*/
$positions = array();
if (Configuration::get('PA_CAPTCHA_CONTACT'))
$positions[] = 'contact';
if (Configuration::get('PA_CAPTCHA_REGISTRATION'))
$positions[] = 'register';
$res &= Configuration::updateValue('PA_CAPTCHA_POSITION', ($positions? implode(',', $positions) : 'register,contact'), true);
/*updateValue override template contact form*/
if (($contact = Configuration::get('PA_CAPTCHA_OVERRIDES')))
Configuration::updateValue('PA_CAPTCHA_TMP_CONTACT', $contact);
/*update Override*/
if ($object->getOverrides() != null)
{
$object->uninstallOverrides();
try {
$object->installOverrides();
} catch (Exception $e) {
$object->_errors[] = $e->getMessage();
}
if (!$object->_errors)
$res &= true;
}
return $res;
}

Some files were not shown because too many files have changed in this diff Show More