Commit 3c3dd7dabc6d8cb01cbd66d33a3491f3aa724001
1 parent
03ad6d19
Solucionado error en el ámbito de atributos de la clase principal.
Showing
2 changed files
with
5 additions
and
4 deletions
config.xml
| @@ -2,7 +2,7 @@ | @@ -2,7 +2,7 @@ | ||
| 2 | <module> | 2 | <module> |
| 3 | <name>imaxmultiean</name> | 3 | <name>imaxmultiean</name> |
| 4 | <displayName><![CDATA[Gestor de EANs Múltiples]]></displayName> | 4 | <displayName><![CDATA[Gestor de EANs Múltiples]]></displayName> |
| 5 | - <version><![CDATA[1.7]]></version> | 5 | + <version><![CDATA[1.8]]></version> |
| 6 | <description><![CDATA[Permite añadir y gestionar múltiples códigos EAN para cada producto y combinación.]]></description> | 6 | <description><![CDATA[Permite añadir y gestionar múltiples códigos EAN para cada producto y combinación.]]></description> |
| 7 | <author><![CDATA[Informax]]></author> | 7 | <author><![CDATA[Informax]]></author> |
| 8 | <tab><![CDATA[administration]]></tab> | 8 | <tab><![CDATA[administration]]></tab> |
imaxmultiean.php
| @@ -11,8 +11,9 @@ class ImaxMultiEAN extends Module { | @@ -11,8 +11,9 @@ class ImaxMultiEAN extends Module { | ||
| 11 | var $idShop; | 11 | var $idShop; |
| 12 | var $idLang; | 12 | var $idLang; |
| 13 | var $idTab; | 13 | var $idTab; |
| 14 | - private $_html = '', $path, $idManual, $forceCheck, $sufijo, $prefijo; | ||
| 15 | - | 14 | + private $_html = '', $path, $idManual, $forceCheck; |
| 15 | + public $sufijo, $prefijo; | ||
| 16 | + | ||
| 16 | private static $funciones; | 17 | private static $funciones; |
| 17 | 18 | ||
| 18 | const prefijo = 'imaxmultiean_'; | 19 | const prefijo = 'imaxmultiean_'; |
| @@ -22,7 +23,7 @@ class ImaxMultiEAN extends Module { | @@ -22,7 +23,7 @@ class ImaxMultiEAN extends Module { | ||
| 22 | $this->name = 'imaxmultiean'; | 23 | $this->name = 'imaxmultiean'; |
| 23 | $this->tab = 'administration'; | 24 | $this->tab = 'administration'; |
| 24 | $this->path = _PS_MODULE_DIR_ . $this->name . '/'; | 25 | $this->path = _PS_MODULE_DIR_ . $this->name . '/'; |
| 25 | - $this->version = '1.7'; | 26 | + $this->version = '1.8'; |
| 26 | $this->author = 'Informax'; | 27 | $this->author = 'Informax'; |
| 27 | $this->need_instance = 0; | 28 | $this->need_instance = 0; |
| 28 | $this->idManual = ''; | 29 | $this->idManual = ''; |