Minor changes in modules categories

This commit is contained in:
Laurent Destailleur 2008-09-10 22:07:38 +00:00
parent 1ef91c1c04
commit 1baced7e9e
13 changed files with 28 additions and 19 deletions

View File

@ -20,10 +20,10 @@
*/ */
/** /**
\file htdocs/admin/modules.php * \file htdocs/admin/modules.php
\brief Page de configuration et activation des modules * \brief Page de configuration et activation des modules
\version $Id$ * \version $Id$
*/ */
require("./pre.inc.php"); require("./pre.inc.php");
require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");

View File

@ -47,7 +47,11 @@ $var=true;
print '<table class="noborder" width="100%">'; print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><td>'.$langs->trans("Version").'</td><td>'.$langs->trans("Value").'</td></tr>'."\n"; print '<tr class="liste_titre"><td>'.$langs->trans("Version").'</td><td>'.$langs->trans("Value").'</td></tr>'."\n";
$var=!$var; $var=!$var;
print "<tr ".$bc[$var]."><td width=\"300\">".$langs->trans("Version")."</td><td>".DOL_VERSION."</td></tr>\n"; print "<tr ".$bc[$var]."><td width=\"300\">".$langs->trans("VersionProgram")."</td><td>".DOL_VERSION."</td></tr>\n";
$var=!$var;
print "<tr ".$bc[$var]."><td width=\"300\">".$langs->trans("VersionLastInstall")."</td><td>".$conf->global->MAIN_VERSION_LAST_INSTALL."</td></tr>\n";
$var=!$var;
print "<tr ".$bc[$var]."><td width=\"300\">".$langs->trans("VersionLastUpgrade")."</td><td>".$conf->global->MAIN_VERSION_LAST_UPGRADE."</td></tr>\n";
print '</table>'; print '</table>';
print '<br>'; print '<br>';

View File

@ -49,7 +49,7 @@ class modBarcode extends DolibarrModules
$this->db = $DB ; $this->db = $DB ;
$this->numero = 55 ; $this->numero = 55 ;
$this->family = "other"; $this->family = "technic";
$this->name = "Codes barres"; $this->name = "Codes barres";
$this->description = "Gestion des codes barres"; $this->description = "Gestion des codes barres";
$this->version = 'dolibarr'; // 'development' or 'experimental' or 'dolibarr' or version $this->version = 'dolibarr'; // 'development' or 'experimental' or 'dolibarr' or version

View File

@ -49,7 +49,7 @@ class modBookmark extends DolibarrModules
$this->db = $DB ; $this->db = $DB ;
$this->numero = 330; $this->numero = 330;
$this->family = "other"; $this->family = "technic";
$this->name = "Bookmarks"; $this->name = "Bookmarks";
$this->description = "Gestion des Bookmarks"; $this->description = "Gestion des Bookmarks";
$this->revision = explode(' ','$Revision$'); $this->revision = explode(' ','$Revision$');

View File

@ -53,7 +53,7 @@ class modBoutique extends DolibarrModules
$this->family = "products"; $this->family = "products";
$this->name = "OSCommerce direct"; $this->name = "OSCommerce direct";
$this->description = "Interface de visualisation d'une boutique OSCommerce ou OSCSS"; $this->description = "Interface de visualisation d'une boutique OSCommerce ou OSCSS";
$this->version = 'experimental'; // 'experimental' or 'dolibarr' or version $this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_BOUTIQUE'; $this->const_name = 'MAIN_MODULE_BOUTIQUE';
$this->special = 1; $this->special = 1;

View File

@ -48,7 +48,7 @@ class modDocument extends DolibarrModules
$this->db = $DB ; $this->db = $DB ;
$this->numero = 51 ; $this->numero = 51 ;
$this->family = "ecm"; $this->family = "other";
$this->name = "Document"; $this->name = "Document";
$this->description = "Gestion des documents"; $this->description = "Gestion des documents";
$this->revision = explode(' ','$Revision$'); $this->revision = explode(' ','$Revision$');

View File

@ -49,8 +49,8 @@ class modDroitPret extends DolibarrModules
$this->numero = 2200 ; $this->numero = 2200 ;
$this->family = "other"; $this->family = "other";
$this->name = "Droit Pr<EFBFBD>t"; $this->name = "Droit Pret";
$this->description = "Gestion du droit de pr<EFBFBD>ts"; $this->description = "Gestion du droit de prets";
$this->version = 'experimental'; // 'development' or 'experimental' or 'dolibarr' or version $this->version = 'experimental'; // 'development' or 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_DROITPRET'; $this->const_name = 'MAIN_MODULE_DROITPRET';
$this->special = 2; $this->special = 2;

View File

@ -62,7 +62,7 @@ class modECM extends DolibarrModules
// Key used in llx_const table to save module status enabled/disabled (XXX is id value) // Key used in llx_const table to save module status enabled/disabled (XXX is id value)
$this->const_name = 'MAIN_MODULE_ECM'; $this->const_name = 'MAIN_MODULE_ECM';
// Where to store the module in setup page (0=common,1=interface,2=other) // Where to store the module in setup page (0=common,1=interface,2=other)
$this->special = 2; $this->special = 0;
// Name of png file (without png) used for this module // Name of png file (without png) used for this module
$this->picto='dir'; $this->picto='dir';

View File

@ -16,13 +16,12 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/ */
/** /**
\defgroup fckeditor Module fckeditor \defgroup fckeditor Module fckeditor
\brief Module pour mettre en page les zones de saisie de texte \brief Module pour mettre en page les zones de saisie de texte
\version $Id$
*/ */
/** /**
@ -54,7 +53,7 @@ class modFckeditor extends DolibarrModules
$this->description = "Editeur WYSIWYG"; $this->description = "Editeur WYSIWYG";
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version $this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_FCKEDITOR'; $this->const_name = 'MAIN_MODULE_FCKEDITOR';
$this->special = 0; $this->special = 2;
// Dir // Dir
$this->dirs = array(); $this->dirs = array();

View File

@ -52,7 +52,7 @@ class modSyslog extends DolibarrModules
$this->description = "Activation des traces debug (syslog)"; $this->description = "Activation des traces debug (syslog)";
$this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version $this->version = 'dolibarr'; // 'experimental' or 'dolibarr' or version
$this->const_name = 'MAIN_MODULE_SYSLOG'; $this->const_name = 'MAIN_MODULE_SYSLOG';
$this->special = 0; $this->special = 2;
//$this->picto='phoning'; //$this->picto='phoning';
// Dir // Dir

View File

@ -1,5 +1,8 @@
# Dolibarr language file - en_US - admin # Dolibarr language file - en_US - admin
Version=Version Version=Version
VersionProgram=Version program
VersionLastInstall=Version initial install
VersionLastUpgrade=Version last upgrade
VersionExperimental=Experimental VersionExperimental=Experimental
VersionDevelopment=Development VersionDevelopment=Development
VersionUnknown=Unknown VersionUnknown=Unknown

View File

@ -84,7 +84,7 @@ OfficialWebSiteFr=Site web fran
ModuleSetup=Configuration du module ModuleSetup=Configuration du module
ModulesSetup=Configuration des modules ModulesSetup=Configuration des modules
ModuleFamilyBase=Système ModuleFamilyBase=Système
ModuleFamilyCrm=Gestion client (CRM) ModuleFamilyCrm=Gestion client
ModuleFamilyProducts=Gestion produits ModuleFamilyProducts=Gestion produits
ModuleFamilyHr=Ressources humaines ModuleFamilyHr=Ressources humaines
ModuleFamilyProjects=Projets/Travail collaboratif ModuleFamilyProjects=Projets/Travail collaboratif

View File

@ -1,5 +1,8 @@
# Dolibarr language file - fr_FR - admin # Dolibarr language file - fr_FR - admin
Version=Version Version=Version
VersionProgram=Version programmes
VersionLastInstall=Version installation initiale
VersionLastUpgrade=Version dernière mise à jour
VersionExperimental=Expérimental VersionExperimental=Expérimental
VersionDevelopment=Développement VersionDevelopment=Développement
VersionUnknown=Inconnue VersionUnknown=Inconnue
@ -176,7 +179,7 @@ FeatureNotAvailableOnLinux=Fonctionnalit
ModuleSetup=Configuration du module ModuleSetup=Configuration du module
ModulesSetup=Configuration des modules ModulesSetup=Configuration des modules
ModuleFamilyBase=Système ModuleFamilyBase=Système
ModuleFamilyCrm=Gestion client (CRM) ModuleFamilyCrm=Gestion client
ModuleFamilyProducts=Gestion produits ModuleFamilyProducts=Gestion produits
ModuleFamilyHr=Ressources humaines ModuleFamilyHr=Ressources humaines
ModuleFamilyProjects=Projets/Travail collaboratif ModuleFamilyProjects=Projets/Travail collaboratif