Fix: Supprime warnings mode error E_ALL
This commit is contained in:
parent
0e824f5511
commit
2cf07a0e46
@ -129,17 +129,31 @@ class modAdherent extends DolibarrModules
|
||||
$this->rights[2][3] = 0; // La permission est-elle une permission par défaut
|
||||
$this->rights[2][4] = 'creer';
|
||||
|
||||
$this->rights[3][0] = 74; // id de la permission
|
||||
$this->rights[3][1] = 'Supprimer les adherents'; // libelle de la permission
|
||||
$this->rights[3][2] = 'd'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[3][3] = 0; // La permission est-elle une permission par défaut
|
||||
$this->rights[3][4] = 'supprimer';
|
||||
|
||||
$this->rights[4][0] = 75; // id de la permission
|
||||
$this->rights[4][1] = 'Configurer les types et caractéristiques des adherents'; // libelle de la permission
|
||||
$this->rights[4][2] = 'w'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[4][0] = 74; // id de la permission
|
||||
$this->rights[4][1] = 'Supprimer les adherents'; // libelle de la permission
|
||||
$this->rights[4][2] = 'd'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[4][3] = 0; // La permission est-elle une permission par défaut
|
||||
$this->rights[4][4] = 'configurer';
|
||||
$this->rights[4][4] = 'supprimer';
|
||||
|
||||
$this->rights[5][0] = 75; // id de la permission
|
||||
$this->rights[5][1] = 'Configurer les types et caractéristiques des adherents'; // libelle de la permission
|
||||
$this->rights[5][2] = 'w'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[5][3] = 0; // La permission est-elle une permission par défaut
|
||||
$this->rights[5][4] = 'configurer';
|
||||
|
||||
$this->rights[6][0] = 78; // id de la permission
|
||||
$this->rights[6][1] = 'Lire les cotisations'; // libelle de la permission
|
||||
$this->rights[6][2] = 'r'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[6][3] = 1; // La permission est-elle une permission par défaut
|
||||
$this->rights[6][4] = 'cotisation';
|
||||
$this->rights[6][5] = 'lire';
|
||||
|
||||
$this->rights[7][0] = 79; // id de la permission
|
||||
$this->rights[7][1] = 'Créer/modifier les cotisations'; // libelle de la permission
|
||||
$this->rights[7][2] = 'w'; // type de la permission (déprécié à ce jour)
|
||||
$this->rights[7][3] = 0; // La permission est-elle une permission par défaut
|
||||
$this->rights[7][4] = 'cotisation';
|
||||
$this->rights[7][5] = 'creer';
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -22,13 +22,13 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
\defgroup telephonie Module Click to Dial
|
||||
\defgroup clicktodial Module Click to Dial
|
||||
\brief Module pour gérer l'appel automatique
|
||||
*/
|
||||
|
||||
/**
|
||||
\file htdocs/includes/modules/modClickToDial.class.php
|
||||
\ingroup telephonie
|
||||
\ingroup clicktodial
|
||||
\brief Fichier de description et activation du module de click to Dial
|
||||
*/
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ class modCommande extends DolibarrModules
|
||||
$this->family = "crm";
|
||||
$this->name = "Commande";
|
||||
$this->description = "Gestion des commandes clients";
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
$this->const_name = "MAIN_MODULE_COMMANDE";
|
||||
$this->const_config = MAIN_MODULE_COMMANDE;
|
||||
|
||||
@ -53,7 +53,7 @@ class modExpedition extends DolibarrModules
|
||||
$this->family = "crm";
|
||||
$this->name = "Expedition";
|
||||
$this->description = "Gestion des expéditions";
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
$this->const_name = "MAIN_MODULE_EXPEDITION";
|
||||
$this->const_config = MAIN_MODULE_EXPEDITION;
|
||||
|
||||
@ -54,7 +54,7 @@ class modFournisseur extends DolibarrModules
|
||||
$this->name = "Fournisseur";
|
||||
$this->description = "Gestion des fournisseurs";
|
||||
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
|
||||
$this->const_name = "MAIN_MODULE_FOURNISSEUR";
|
||||
@ -141,7 +141,7 @@ class modFournisseur extends DolibarrModules
|
||||
$this->rights[10][0] = 231;
|
||||
$this->rights[10][1] = 'Lire les factures fournisseur';
|
||||
$this->rights[10][2] = 'r';
|
||||
$this->rights[10][3] = 0;
|
||||
$this->rights[10][3] = 1;
|
||||
$this->rights[10][4] = 'facture';
|
||||
$this->rights[10][5] = 'lire';
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ class modPrelevement extends DolibarrModules
|
||||
$this->name = "Prelevement";
|
||||
$this->description = "Gestion des Prélèvements";
|
||||
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
|
||||
$this->const_name = "MAIN_MODULE_PRELEVEMENT";
|
||||
|
||||
@ -57,7 +57,7 @@ class modProduit extends DolibarrModules
|
||||
$this->name = "Produit";
|
||||
$this->description = "Gestion des produits";
|
||||
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
|
||||
$this->const_name = "MAIN_MODULE_PRODUIT";
|
||||
|
||||
@ -55,7 +55,7 @@ class modPropale extends DolibarrModules
|
||||
$this->name = "Propositions commerciales";
|
||||
$this->description = "Gestion des propositions commerciales";
|
||||
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
|
||||
$this->const_name = "MAIN_MODULE_PROPALE";
|
||||
|
||||
@ -55,7 +55,7 @@ class modStock extends DolibarrModules
|
||||
$this->name = "Stock produits";
|
||||
$this->description = "Gestion des stocks";
|
||||
|
||||
$this->revision = explode(" ","$Revision$");
|
||||
$this->revision = explode(' ','$Revision$');
|
||||
$this->version = $this->revision[1];
|
||||
|
||||
$this->const_name = "MAIN_MODULE_STOCK";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user