diff --git a/lemonway/controllers/front/validation.php b/lemonway/controllers/front/validation.php index 8c5c4d9..15a40b0 100644 --- a/lemonway/controllers/front/validation.php +++ b/lemonway/controllers/front/validation.php @@ -37,6 +37,8 @@ public function __construct() */ public function postProcess() { + PrestaShopLogger::addLog("Lemon Way: Payment validation"); + // If the module is not active anymore, no need to process anything. if (!$this->module->active) { die; diff --git a/lemonway/lemonway.php b/lemonway/lemonway.php index 771c788..650a9af 100644 --- a/lemonway/lemonway.php +++ b/lemonway/lemonway.php @@ -66,14 +66,6 @@ class Lemonway extends PaymentModule /** @var bool */ public static $is_active = 1; - public static $statuesLabel = array( - 1 => "Document uniquement reçu", - 2 => "Document vérifié et accepté", - 3 => "Document vérifié mais non accepté", - 4 => "Document remplacé par un autre document", - 5 => "Validité du document expiré" - ); - public static $subMethods = array( "CC" => array( "classname" => "Cc", @@ -93,7 +85,7 @@ public function __construct() { $this->name = 'lemonway'; $this->tab = 'payments_gateways'; - $this->version = '1.4.0'; + $this->version = '1.4.0.1'; $this->author = 'Lemon Way'; $this->need_instance = 0;