- ';
- return $this->_html;
- }
-
- public function createTodaysVouchers()
- {
- $users = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS('
- SELECT DISTINCT c.id_customer, firstname, lastname, email
- FROM '._DB_PREFIX_.'customer c
- LEFT JOIN '._DB_PREFIX_.'orders o ON (c.id_customer = o.id_customer)
- WHERE o.valid = 1
- AND c.birthday LIKE \'%'.date('-m-d').'\'');
-
- foreach ($users as $user)
- {
- $voucher = new Discount();
- $voucher->id_customer = (int)($user['id_customer']);
- $voucher->id_discount_type = (int)(Configuration::get('BIRTHDAY_DISCOUNT_TYPE'));
- $voucher->name = 'BIRTHDAY-'.(int)($voucher->id_customer).'-'.date('Y');
- $voucher->description[(int)(Configuration::get('PS_LANG_DEFAULT'))] = $this->l('Your birthday present !');
- $voucher->value = Configuration::get('BIRTHDAY_DISCOUNT_VALUE');
- $voucher->id_currency = Configuration::get('PS_CURRENCY_DEFAULT');
- $voucher->quantity = 1;
- $voucher->quantity_per_user = 1;
- $voucher->cumulable = 1;
- $voucher->cumulable_reduction = 1;
- $voucher->date_from = date('Y-m-d');
- $voucher->date_to = strftime('%Y-%m-%d', strtotime('+1 month'));
- $voucher->minimal = Configuration::get('BIRTHDAY_MINIMAL_ORDER');
- $voucher->active = true;
- if ($voucher->add())
- Mail::Send((int)(Configuration::get('PS_LANG_DEFAULT')), 'birthday', Mail::l('Happy birthday!'), array('{firstname}' => $user['firstname'], '{lastname}' => $user['lastname']), $user['email'], NULL, strval(Configuration::get('PS_SHOP_EMAIL')), strval(Configuration::get('PS_SHOP_NAME')), NULL, NULL, dirname(__FILE__).'/mails/');
- else
- echo Db::getInstance()->getMsgError();
- }
- }
-}
-
diff --git a/modules/birthdaypresent/comment.gif b/modules/birthdaypresent/comment.gif
deleted file mode 100644
index 7bc9233ea..000000000
Binary files a/modules/birthdaypresent/comment.gif and /dev/null differ
diff --git a/modules/birthdaypresent/config.xml b/modules/birthdaypresent/config.xml
deleted file mode 100755
index 030a3e053..000000000
--- a/modules/birthdaypresent/config.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- birthdaypresent
-
-
-
-
-
- 1
- 0
-
-
\ No newline at end of file
diff --git a/modules/birthdaypresent/cron.php b/modules/birthdaypresent/cron.php
deleted file mode 100644
index 06525c582..000000000
--- a/modules/birthdaypresent/cron.php
+++ /dev/null
@@ -1,40 +0,0 @@
-
-* @copyright 2007-2011 PrestaShop SA
-* @version Release: $Revision: 6844 $
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-include(dirname(__FILE__).'/../../config/config.inc.php');
-include(dirname(__FILE__).'/../../init.php');
-include(dirname(__FILE__).'/birthdaypresent.php');
-
-if (!Configuration::get('BIRTHDAY_ACTIVE'))
- die ('Birthday present not active');
-if (Configuration::get('BIRTHDAY_DATE_UPD') == date('Y-m-d'))
- die ('Birthday already wished');
-Configuration::updateValue('BIRTHDAY_DATE_UPD', date('Y-m-d'));
-$module = new BirthdayPresent();
-$module->createTodaysVouchers();
-die ('OK');
-
diff --git a/modules/birthdaypresent/de.php b/modules/birthdaypresent/de.php
deleted file mode 100644
index b43e5da9d..000000000
--- a/modules/birthdaypresent/de.php
+++ /dev/null
@@ -1,28 +0,0 @@
-birthdaypresent_c2796655c25e1b0b8582716036aece08'] = 'Geburtstagsgeschenk';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d1f5899bf2af57ed816390d9d740daf6'] = 'Bieten Sie Ihren Kunden automatisch Geburtstagsgeschenke an';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_ccfcf858237a83953c1ac03b5abde35e'] = 'Erstellen Sie einen Gutschein für Kunden, die Geburtstag haben und mind. eine Bestellung bereits getätigt haben.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Aktiv';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_52292d2f9c39936bc72fbd47a3060df3'] = 'Sie müssen zusätzlich eine cron-Regel einstellen, die die Datei aufruft';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f7e78e04cba74c610354e91e622cc105'] = 'jeden Tag';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Typ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_689202409e48743b914713f96d93947c'] = 'Wert';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_998d08a9606f9656e8d1fcab8b762155'] = 'Entweder den Geldbetrag oder den Prozentsatz, je nach oben ausgewähltem Typ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_1f0084a1581c05622120bd827305f173'] = 'Mindestbestellung';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_783d0f2960c7c628177f740ce38ec3e7'] = 'Mindestbestellwert, um den Gutschein nutzen zu können';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_38fb7d24e0d60a048f540ecb18e13376'] = 'Speichern';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_19f823c6453c2b1ffd09cb715214813d'] = 'Pflichtfeld';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_6602bbeb2956c035fb4cb5e844a4861b'] = 'Erklärung';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_cb21e843b037359d0fb5b793fccf964f'] = 'Kundenbindung ausbauen';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d725bab433ae44aee759eb82a24b09de'] = 'Kundengeschenke sind ein Mittel zur Kundenbindung.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_0dc42f38b35e45090e1a1c94755c2d43'] = 'Was müssen Sie tun?';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a3729d34db57cdeabe59a1fe78644458'] = 'Wiederkehrender Kunden zu pflegen ist profitabler, als immer neue zu gewinnen. Daher ist es empfehlenswert, deren Vertrauen aufzubauen und ihnen das Wiederkommen so angenehm wie möglich zu gestalten.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_7b6ac3f2cdb42a4462ff7ca3c4358f71'] = 'Ein guter Ruf ist ebenso ein Mittel, zufriedene Kunden zu bekommen; ein unzufriedener Kunde zieht keine Neukunden an.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_410008089d5bb723438103a84d48a59c'] = 'Um dieses Ziel zu erreichen, können Sie Folgendes organisieren:';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_3e788301a1b0ce341aa5ce15bc520545'] = 'Punktuelle Aktionen: kommerzielle Vergünstigungen (persönliche Sonderangebote, Gratis-Produkte oder -Services), nicht-kommerzielle Vergütungen (bevorzugte Behandlung einer Bestellung oder eines Produkts), geldliche Vergünstigungen (Gutscheine, Ermäßigungsgutscheine, PayBack...)';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f299b58558601a85c98a2d1d7867d523'] = 'Nachhaltige Aktionen: Treue- oder Kundenkarte, die nicht nur der Kommunikation zwischen Händler und Kunden dient, sondern Kunden auch Vorteile bietet (Persönliche Angebote, Ermäßigungen).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d434c183a411611f50fa7e121b0f6565'] = 'Diese Operation bewegt die Kunden dazu, in IHrem Shop regelmäßig einzukaufen.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d46bd07675d08116e85f8a4c7866de53'] = 'Ihr Geburtstagsgeschenk!';
diff --git a/modules/birthdaypresent/en.php b/modules/birthdaypresent/en.php
deleted file mode 100644
index 601358d4f..000000000
--- a/modules/birthdaypresent/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-birthdaypresent_c2796655c25e1b0b8582716036aece08'] = 'Regalo de cumpleaños';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d1f5899bf2af57ed816390d9d740daf6'] = 'Haga a sus clientes regalos de cumpleaños automáticamente';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_ccfcf858237a83953c1ac03b5abde35e'] = 'Crear un bono para los clientes que celebran su cumpleaños y que tiene por lo menos un pedido válido';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_52292d2f9c39936bc72fbd47a3060df3'] = 'Adicionalemente, debe establecer una regla CRON que pida el archivo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f7e78e04cba74c610354e91e622cc105'] = 'todos los días';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_689202409e48743b914713f96d93947c'] = 'Valor';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_998d08a9606f9656e8d1fcab8b762155'] = 'cantidad monetaria o porcentaje dependiendo del tipo seleccionado anteriormente';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_1f0084a1581c05622120bd827305f173'] = 'Pedido mínimo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_783d0f2960c7c628177f740ce38ec3e7'] = 'Cantidad de pedido mínimo para utilizar el vale';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_38fb7d24e0d60a048f540ecb18e13376'] = 'Guardar';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_19f823c6453c2b1ffd09cb715214813d'] = 'Archivo necesario';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_cb21e843b037359d0fb5b793fccf964f'] = 'Desarrolle la fidelización de sus clientes';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d725bab433ae44aee759eb82a24b09de'] = 'Haciendo regalos a sus clientes está seguro de fidelizarlos.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_0dc42f38b35e45090e1a1c94755c2d43'] = '¿Cómo hacer?';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a3729d34db57cdeabe59a1fe78644458'] = 'Conservar un cliente es más ventajoso que captar uno nuevo. Así, es necesario desarrollar su lealtad, es decir hacer todo lo posible para que vuelva a su tienda.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_7b6ac3f2cdb42a4462ff7ca3c4358f71'] = 'El boca a boca es uno de los mejores métodos para conseguir nuevos clientes satisfechos; un cliente contento atraerá otros nuevos clientes.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_410008089d5bb723438103a84d48a59c'] = 'Para alcanzar este objetivo usted puede organizar:';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_3e788301a1b0ce341aa5ce15bc520545'] = 'Operaciones puntuales: recompensas comerciales (ofertas especiales personalizadas, producto o servicios ofrecidos), recompensas no comerciales (prioridad en el envío de un pedido o de un producto), recompensas pecuniarias (enlaces, cupones del descuento, prioridad en el reembolso...).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f299b58558601a85c98a2d1d7867d523'] = 'Operaciones sostenibles: las tarjetas de fidelidad o de puntos, que no sólo justifican la comunicación entre el comerciante y el cliente, pero también ofrecen ventajas a los clientes (ofertas, descuentos privados).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d434c183a411611f50fa7e121b0f6565'] = 'Estas operaciones animan a los clientes a comprar y también a volver a su tienda en línea frecuentemente.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d46bd07675d08116e85f8a4c7866de53'] = '¡Su regalo de cumpleaños!';
diff --git a/modules/birthdaypresent/fr.php b/modules/birthdaypresent/fr.php
deleted file mode 100644
index 8f83d2582..000000000
--- a/modules/birthdaypresent/fr.php
+++ /dev/null
@@ -1,28 +0,0 @@
-birthdaypresent_c2796655c25e1b0b8582716036aece08'] = 'Cadeau d\'anniversaire';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d1f5899bf2af57ed816390d9d740daf6'] = 'Offrez automatiquement à vos clients des cadeaux d\'anniversaire';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_ccfcf858237a83953c1ac03b5abde35e'] = 'Créer un bon de réduction pour les clients fêtant leur anniversaire et ayant au moins une commande valide';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Actif';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_52292d2f9c39936bc72fbd47a3060df3'] = 'De plus, vous devez installer une règle CRON qui appellera le fichier';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f7e78e04cba74c610354e91e622cc105'] = 'chaque jour';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Type';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_689202409e48743b914713f96d93947c'] = 'Valeur';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_998d08a9606f9656e8d1fcab8b762155'] = 'Soit le montant soit le pourcentage selon votre choix précédent';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_1f0084a1581c05622120bd827305f173'] = 'Commande minimum';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_783d0f2960c7c628177f740ce38ec3e7'] = 'Montant minimum de la commande pour que le bon soit utilisable';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_38fb7d24e0d60a048f540ecb18e13376'] = 'Sauvegarder';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_19f823c6453c2b1ffd09cb715214813d'] = 'Champ requis';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_cb21e843b037359d0fb5b793fccf964f'] = 'Fidéliser le client';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d725bab433ae44aee759eb82a24b09de'] = 'Offrir un cadeau d\'anniversaire à un client est une manière comme une autre d\'agir sur sa fidélité.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_0dc42f38b35e45090e1a1c94755c2d43'] = 'Que faire ?';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a3729d34db57cdeabe59a1fe78644458'] = 'Garder un client est plus rentable que d’en conquérir un nouveau. Il est donc impératif de le fidéliser, c\'est-à-dire de le faire revenir sur votre boutique. ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_7b6ac3f2cdb42a4462ff7ca3c4358f71'] = 'Le bouche à oreille est également un moyen d\'avoir de nouveaux clients satisfaits ; car un client non satisfait n\'en attirera pas de nouveaux. ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_410008089d5bb723438103a84d48a59c'] = 'Pour y parvenir, plusieurs moyens existent :';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_3e788301a1b0ce341aa5ce15bc520545'] = 'Les opérations ponctuelles : les récompenses marchandes (offres promotionnelles ciblées et personnalisées, cadeaux -produit ou service offert-), les récompenses non marchandes (traitement prioritaire d\'une commande ou d\'un produit), les récompenses pécuniaires (bons d\'achat, de réduction, de remboursement). ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f299b58558601a85c98a2d1d7867d523'] = 'Les opérations pérennes : (carte de fidélité, points de fidélité) qui non seulement justifient la communication marchand-clients, et aussi offre des avantages aux clients (offres privatives, réductions).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d434c183a411611f50fa7e121b0f6565'] = 'Ces opérations encouragent les clients à acheter et aussi à revenir sur votre boutique en ligne régulièrement.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d46bd07675d08116e85f8a4c7866de53'] = 'Votre cadeau d\'anniversaire !';
diff --git a/modules/birthdaypresent/index.php b/modules/birthdaypresent/index.php
deleted file mode 100644
index 4e2611d37..000000000
--- a/modules/birthdaypresent/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2011 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;
\ No newline at end of file
diff --git a/modules/birthdaypresent/it.php b/modules/birthdaypresent/it.php
deleted file mode 100644
index 1cfe2c6d4..000000000
--- a/modules/birthdaypresent/it.php
+++ /dev/null
@@ -1,28 +0,0 @@
-birthdaypresent_c2796655c25e1b0b8582716036aece08'] = 'Regalo di compleanno';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d1f5899bf2af57ed816390d9d740daf6'] = 'Offri automaticamente ai tuoi clienti dei regali di compleanno ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_ccfcf858237a83953c1ac03b5abde35e'] = 'Creare un voucher per i clienti che festeggiano il loro compleanno e che abbia almeno un ordine valido';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Attivo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_52292d2f9c39936bc72fbd47a3060df3'] = 'Inoltre, devi impostare una regola CRON che chiama il file';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f7e78e04cba74c610354e91e622cc105'] = 'tutti i giorni';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_689202409e48743b914713f96d93947c'] = 'Valore';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_998d08a9606f9656e8d1fcab8b762155'] = 'L\'importo o la %, a seconda del tipo selezionato sopra';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_1f0084a1581c05622120bd827305f173'] = 'Ordine minimo';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_783d0f2960c7c628177f740ce38ec3e7'] = 'Importo minimo di ordine necessario per utilizzare il voucher';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_38fb7d24e0d60a048f540ecb18e13376'] = 'Salva';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_19f823c6453c2b1ffd09cb715214813d'] = 'Campi obbligatori';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_cb21e843b037359d0fb5b793fccf964f'] = 'Sviluppa la fedeltà dei clienti ';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d725bab433ae44aee759eb82a24b09de'] = 'Offrire un regalo a un cliente è un mezzo per ottenere la sua fedeltà.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_0dc42f38b35e45090e1a1c94755c2d43'] = 'Cosa devo fare?';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_a3729d34db57cdeabe59a1fe78644458'] = 'Mantenere un cliente è più redditizio di conquistarne uno nuovo. Pertanto, è importante svilupparne la fedeltà, in altre parole, cercare di farlo tornare al tuo negozio online.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_7b6ac3f2cdb42a4462ff7ca3c4358f71'] = 'Il passaparola è anche un mezzo per ottenere nuovi clienti soddisfatti; un cliente insoddisfatto non attira nuovi clienti.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_410008089d5bb723438103a84d48a59c'] = 'Per raggiungere questo obiettivo è possibile organizzare:';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_3e788301a1b0ce341aa5ce15bc520545'] = 'Operazioni regolari: premi commerciali (offerte speciali personalizzate, prodotto o servizio offerto), premi non commerciale (gestione prioritaria di un ordine o di un prodotto), premi pecuniari (obbligazioni, buoni sconto, reinvestimenti ...).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_f299b58558601a85c98a2d1d7867d523'] = 'Operazioni sostenibili: carte fedeltà o punti, che non solo giustificano la comunicazione tra commerciante e cliente, ma offre anche vantaggi ai clienti (offerte private, sconti).';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d434c183a411611f50fa7e121b0f6565'] = 'Queste operazioni incoraggiano i clienti a comprare e a tornare al tuo negozio online regolarmente.';
-$_MODULE['<{birthdaypresent}prestashop>birthdaypresent_d46bd07675d08116e85f8a4c7866de53'] = 'Il tuo regalo di compleanno!';
diff --git a/modules/birthdaypresent/logo.gif b/modules/birthdaypresent/logo.gif
deleted file mode 100644
index 4ef151aee..000000000
Binary files a/modules/birthdaypresent/logo.gif and /dev/null differ
diff --git a/modules/birthdaypresent/mails/de/birthday.html b/modules/birthdaypresent/mails/de/birthday.html
deleted file mode 100644
index 3df4c64a5..000000000
--- a/modules/birthdaypresent/mails/de/birthday.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
- Alles Gute zum Geburtstag von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
{shop_name} wünscht Ihnen alles Gute zum Geburtstag und möchte Ihnen ein Geschenk machen.
-
-
-
-
-
-
-
Es wartet eine Überraschung auf Sie... melden Sie sich jetzt bei Ihrem Konto an, um Ihren Ermäßigungsgutschein zu sehen! Und viel Spaß beim Einlösen!
-
-
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/de/birthday.txt b/modules/birthdaypresent/mails/de/birthday.txt
deleted file mode 100644
index 548994cff..000000000
--- a/modules/birthdaypresent/mails/de/birthday.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-Hallo {firstname} {lastname},
-
-{shop_name} wünscht Ihnen alles Gute zum Geburtstag und möchte Ihnen ein Geschenk machen. Es wartet eine Überraschung auf Sie... melden Sie sich jetzt bei Ihrem Konto an, um Ihren Ermäßigungsgutschein zu sehen!
-
-{shop_url} Powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/de/index.php b/modules/birthdaypresent/mails/de/index.php
deleted file mode 100644
index 4e2611d37..000000000
--- a/modules/birthdaypresent/mails/de/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2011 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;
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/en/birthday.html b/modules/birthdaypresent/mails/en/birthday.html
deleted file mode 100644
index ea53ece7e..000000000
--- a/modules/birthdaypresent/mails/en/birthday.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
- Happy Birthday! from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
Hi {firstname} {lastname},
-
-
-
-
{shop_name} wants to wish you a Happy Birthday and offers you a present.
-
-
-
-
-
A surprise is waiting for you... log now on your account to see your discount voucher!
- And put it to good use!
-
-
diff --git a/modules/birthdaypresent/mails/en/birthday.txt b/modules/birthdaypresent/mails/en/birthday.txt
deleted file mode 100644
index fd1c40c03..000000000
--- a/modules/birthdaypresent/mails/en/birthday.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Hi {firstname} {lastname},
-
-{shop_name} wants to wish you a Happy Birthday and offers you a present.
-A surprise is waiting for you... log now on your account to see your discount voucher. And put it to good use!
-
-
-{shop_url} Powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/en/index.php b/modules/birthdaypresent/mails/en/index.php
deleted file mode 100644
index 4e2611d37..000000000
--- a/modules/birthdaypresent/mails/en/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2011 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;
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/es/birthday.html b/modules/birthdaypresent/mails/es/birthday.html
deleted file mode 100644
index 750374a54..000000000
--- a/modules/birthdaypresent/mails/es/birthday.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
- ¡Feliz cumpleaños! desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
{shop_name} les desea un feliz cumpleaños y le ofrece un regalo.
-
-
-
-
-
-
-
Una sorpresa le espera ... Registrarse ahora en su cuenta para ver su bono de descuento! Y ponerlo a buen uso!
-
-
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/es/birthday.txt b/modules/birthdaypresent/mails/es/birthday.txt
deleted file mode 100644
index 3ff12e4cf..000000000
--- a/modules/birthdaypresent/mails/es/birthday.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Hola {firstname} {lastname},
-
-{shop_name} les desea un feliz cumpleaños y le ofrece un regalo.
-Una sorpresa le espera ... Registrarse ahora en su cuenta para ver su bono de descuento. Y ponerlo a buen uso!
-
-{shop_url} Powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/es/index.php b/modules/birthdaypresent/mails/es/index.php
deleted file mode 100644
index 4e2611d37..000000000
--- a/modules/birthdaypresent/mails/es/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2011 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;
\ No newline at end of file
diff --git a/modules/birthdaypresent/mails/fr/birthday.html b/modules/birthdaypresent/mails/fr/birthday.html
deleted file mode 100644
index 79a008dc7..000000000
--- a/modules/birthdaypresent/mails/fr/birthday.html
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
- {shop_name} vous souhaite un bon anniversaire !
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
{shop_name} vous souhaite un très bon anniversaire et vous offre un cadeau.
-
-
-
-
-
Une surprise vous attend... Connectez-vous dès maintenant sur votre compte pour accéder à votre bon de réduction.
- Faites-en bon usage!