Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
5f18fa0b
Commit
5f18fa0b
authored
17 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
dbut ajout module import de donnes
parent
c61236d1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/includes/modules/modImport.class.php
+118
-0
118 additions, 0 deletions
htdocs/includes/modules/modImport.class.php
htdocs/langs/en_US/admin.lang
+2
-0
2 additions, 0 deletions
htdocs/langs/en_US/admin.lang
htdocs/langs/fr_FR/admin.lang
+2
-0
2 additions, 0 deletions
htdocs/langs/fr_FR/admin.lang
with
122 additions
and
0 deletions
htdocs/includes/modules/modImport.class.php
0 → 100644
+
118
−
0
View file @
5f18fa0b
<?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
);
}
}
?>
This diff is collapsed.
Click to expand it.
htdocs/langs/en_US/admin.lang
+
2
−
0
View file @
5f18fa0b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
htdocs/langs/fr_FR/admin.lang
+
2
−
0
View file @
5f18fa0b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment