Use non generic picto on all modules

This commit is contained in:
Laurent Destailleur 2010-06-02 19:56:14 +00:00
parent fb51d0e4af
commit 5dc5d1aa7a
10 changed files with 17 additions and 8 deletions

View File

@ -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();

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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");

View File

@ -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();

View File

@ -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();