Skip to content
Snippets Groups Projects
Commit 5dc5d1aa authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Use non generic picto on all modules

parent fb51d0e4
Branches
Tags
No related merge requests found
......@@ -60,7 +60,7 @@ class modCashDesk extends DolibarrModules
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
$this->special = 0;
$this->picto = 'generic';
$this->picto = 'list';
// Data directories to create when module is enabled
$this->dirs = array();
......
......@@ -56,6 +56,9 @@ class modDon extends DolibarrModules
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
$this->special = 0;
// Name of png file (without png) used for this module.
// Png file must be in theme/yourtheme/img directory under name object_pictovalue.png.
$this->picto='bill';
// Data directories to create when module is enabled
$this->dirs = array("/dons/temp");
......
......@@ -54,7 +54,7 @@ class modExport extends DolibarrModules
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
$this->special = 0;
$this->picto='';
$this->picto='technic';
// Data directories to create when module is enabled
$this->dirs = array("/export/temp");
......
......@@ -55,6 +55,9 @@ class modFckeditor extends DolibarrModules
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
$this->special = 2;
// Name of png file (without png) used for this module.
// Png file must be in theme/yourtheme/img directory under name object_pictovalue.png.
$this->picto='list';
// Data directories to create when module is enabled
$this->dirs = array("/fckeditor/temp","/fckeditor/images");
......
......@@ -61,7 +61,7 @@ class modGeoIPMaxmind extends DolibarrModules
// Name of image file used for this module.
// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
// If file is in module/images directory, use this->picto=DOL_URL_ROOT.'/module/images/file.png'
$this->picto = '';
$this->picto = 'globe';
// Data directories to create when module is enabled
$this->dirs = array("/geoipmaxmind");
......
......@@ -65,7 +65,7 @@ class modGravatar extends DolibarrModules
// Name of image file used for this module.
// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
// If file is in module/images directory, use this->picto=DOL_URL_ROOT.'/module/images/file.png'
$this->picto='generic';
$this->picto='technic';
// Data directories to create when module is enabled.
// Example: this->dirs = array("/mymodule/temp");
......
......@@ -54,7 +54,7 @@ class modImport extends DolibarrModules
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
$this->special = 0;
$this->picto = '';
$this->picto = 'technic';
// Data directories to create when module is enabled
$this->dirs = array("/import/temp");
......
......@@ -55,6 +55,10 @@ class modLdap extends DolibarrModules
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
$this->special = 1;
// Name of image file used for this module.
// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
// If file is in module/images directory, use this->picto=DOL_URL_ROOT.'/module/images/file.png'
$this->picto = 'technic';
// Data directories to create when module is enabled
$this->dirs = array("/ldap/temp");
......
......@@ -34,7 +34,6 @@ include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php");
* \class modSyslog
* \brief Classe de description et activation du module Syslog
*/
class modSyslog extends DolibarrModules
{
......@@ -63,7 +62,7 @@ class modSyslog extends DolibarrModules
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
$this->special = 2;
// Name of image file used for this module.
$this->picto='generic';
$this->picto='technic';
// Data directories to create when module is enabled
$this->dirs = array();
......
......@@ -57,7 +57,7 @@ class modWebServices extends DolibarrModules
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
$this->special = 1;
// Name of image file used for this module.
$this->picto='generic';
$this->picto='technic';
// Data directories to create when module is enabled
$this->dirs = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment