Skip to content
Snippets Groups Projects
Commit 5f18fa0b authored by Regis Houssin's avatar Regis Houssin
Browse files

dbut ajout module import de donnes

parent c61236d1
No related branches found
No related tags found
No related merge requests found
<?php
/* Copyright (C) 2005-2007 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2007 Regis Houssin <regis.houssin@cap-networks.com>
*
* 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 gnrique pour raliser des imports de donnes 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'accs 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 donnes 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();
// Dpendances
$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] = 'Crer/modifier un import';
$this->rights[2][2] = 'w';
$this->rights[2][3] = 0;
$this->rights[2][4] = 'creer';
}
/**
* \brief Fonction appele lors de l'activation du module. Insre en base les constantes, boites, permissions du module.
* Dfinit galement les rpertoires de donnes crer pour ce module.
*/
function init()
{
$sql = array();
return $this->_init($sql);
}
/**
* \brief Fonction appele lors de la dsactivation d'un module.
* Supprime de la base les constantes, boites et permissions du module.
*/
function remove()
{
$sql = array();
return $this->_remove($sql);
}
}
?>
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment