mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-16 14:31:29 +01:00
Clean code
This commit is contained in:
@@ -93,7 +93,7 @@ class modMyModule extends DolibarrModules
|
||||
$this->langfiles = array("mymodule");
|
||||
|
||||
// Constants
|
||||
$this->const = array(); // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 0 or 'allentities', condition)
|
||||
$this->const = array(); // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 0 or 'allentities')
|
||||
//Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',0),
|
||||
// 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0) );
|
||||
|
||||
|
||||
@@ -789,7 +789,7 @@ class DolibarrModules
|
||||
$type = $this->const[$key][1];
|
||||
$val = $this->const[$key][2];
|
||||
$note = $this->const[$key][3];
|
||||
$visible= $this->const[$key][4];
|
||||
$visible = $this->const[$key][4];
|
||||
$entity = ! empty($this->const[$key][5])?0:$conf->entity;
|
||||
|
||||
// Clean
|
||||
|
||||
@@ -107,7 +107,6 @@ class modSociete extends DolibarrModules
|
||||
$this->const[$r][2] = "DOL_DATA_ROOT/odttemplates/thirdparties";
|
||||
$this->const[$r][3] = "";
|
||||
$this->const[$r][4] = 0;
|
||||
$this->const[$r][6] = '$this->db->type != \'pgsql\''; // Condition
|
||||
$r++;
|
||||
|
||||
// Boxes
|
||||
|
||||
Reference in New Issue
Block a user