dbut ajout module import de donnes
This commit is contained in:
parent
c61236d1a9
commit
5f18fa0b98
118
htdocs/includes/modules/modImport.class.php
Normal file
118
htdocs/includes/modules/modImport.class.php
Normal file
@ -0,0 +1,118 @@
|
||||
<?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 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);
|
||||
}
|
||||
}
|
||||
?>
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user