diff --git a/htdocs/includes/modules/modImport.class.php b/htdocs/includes/modules/modImport.class.php new file mode 100644 index 00000000000..9dda2abfd06 --- /dev/null +++ b/htdocs/includes/modules/modImport.class.php @@ -0,0 +1,118 @@ + + * Copyright (C) 2005-2007 Regis Houssin + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + */ + +/** \defgroup import Module Import + \brief Module générique pour réaliser des imports de données en base +*/ + +/** + \file htdocs/includes/modules/modImport.class.php + \ingroup import + \brief Fichier de description et activation du module Import +*/ + +include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php"); + + +/** \class modImport + \brief Classe de description et activation du module Import +*/ + +class modImport extends DolibarrModules +{ + + /** + * \brief Constructeur. Definit les noms, constantes et boites + * \param DB handler d'accès base + */ + function modImport($DB) + { + $this->db = $DB ; + $this->id = 'import'; // Same value xxx than in file modXxx.class.php file + $this->numero = 250; + + $this->family = "technic"; + $this->name = "Imports"; + $this->description = "Outils d'imports de données Dolibarr (via un assistant)"; + $this->version = 'development'; // 'experimental' or 'dolibarr' or version + $this->const_name = 'MAIN_MODULE_IMPORT'; + $this->special = 0; + $this->picto=''; + + // Dir + $this->dirs = array(); + + // Config pages + $this->config_page_url = array(); + + // Dépendances + $this->depends = array(); + $this->requiredby = array(); + $this->phpmin = array(4,2,0); + $this->phpmax = array(); + + // Constantes + $this->const = array(); + + // Boxes + $this->boxes = array(); + + // Permissions + $this->rights = array(); + $this->rights_class = 'import'; + + $this->rights[1][0] = 1401; + $this->rights[1][1] = 'Lire les imports'; + $this->rights[1][2] = 'r'; + $this->rights[1][3] = 1; + $this->rights[1][4] = 'lire'; + + $this->rights[2][0] = 1402; + $this->rights[2][1] = 'Créer/modifier un import'; + $this->rights[2][2] = 'w'; + $this->rights[2][3] = 0; + $this->rights[2][4] = 'creer'; + + } + + /** + * \brief Fonction appelée lors de l'activation du module. Insère en base les constantes, boites, permissions du module. + * Définit également les répertoires de données à créer pour ce module. + */ + function init() + { + $sql = array(); + + return $this->_init($sql); + } + + /** + * \brief Fonction appelée lors de la désactivation d'un module. + * Supprime de la base les constantes, boites et permissions du module. + */ + function remove() + { + $sql = array(); + + return $this->_remove($sql); + } +} +?> diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index e4be3d4c604..a4e667434a2 100644 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -201,6 +201,8 @@ Module210Name=PostNuke Module210Desc=PostNuke integration Module240Name=Data exports Module240Desc=Tool to export Dolibarr datas (with assistants) +Module250Name=Data imports +Module250Desc=Tool to import datas in Dolibarr (with assistants) Module310Name=Members Module310Desc=Foundation members management Module320Name=RSS Feed diff --git a/htdocs/langs/fr_FR/admin.lang b/htdocs/langs/fr_FR/admin.lang index 43f24e7d243..63285b4471b 100644 --- a/htdocs/langs/fr_FR/admin.lang +++ b/htdocs/langs/fr_FR/admin.lang @@ -201,6 +201,8 @@ Module210Name=PostNuke Module210Desc=Intégration avec PostNuke Module240Name=Exports de données Module240Desc=Outil d'exports de données Dolibarr (via un assistant) +Module250Name=Imports de données +Module250Desc=Outil d'imports de données dans Dolibarr (via un assistant) Module310Name=Adhérents Module310Desc=Gestion des adhérents d'une association Module320Name=Fils RSS