448 |
ddelon |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
// +--------------------------------------------------------------------------------+
|
|
|
4 |
// | annuaire_moteur_config.php |
|
|
|
5 |
// +--------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (c) 2000 - 2003 Tela Botanica |
|
|
|
7 |
// +--------------------------------------------------------------------------------+
|
|
|
8 |
// | Fichier de configuration de annuaire_moteur.php |
|
|
|
9 |
// +--------------------------------------------------------------------------------+
|
|
|
10 |
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
|
|
|
11 |
// +--------------------------------------------------------------------------------+
|
|
|
12 |
//
|
1088 |
florian |
13 |
// $Id: annuaire_backoffice.config.inc.php,v 1.3 2006-12-01 16:02:15 florian Exp $
|
448 |
ddelon |
14 |
|
|
|
15 |
/**
|
|
|
16 |
//==================================== CONSTANTES ==================================
|
1081 |
florian |
17 |
* Constantes des noms de tables et de champs dans l'annuaire admin papyrus
|
448 |
ddelon |
18 |
//==================================================================================
|
|
|
19 |
*/
|
|
|
20 |
|
1081 |
florian |
21 |
/** Nom de la table Annuaire */
|
|
|
22 |
define ('INS_ANNUAIRE', 'gen_annuaire');
|
|
|
23 |
/** Champs identifiant */
|
|
|
24 |
define ('INS_CHAMPS_ID', 'ga_id_administrateur');
|
|
|
25 |
/** Champs adresse mail */
|
|
|
26 |
define ('INS_CHAMPS_MAIL', 'ga_mail');
|
|
|
27 |
/** Champs nom */
|
|
|
28 |
define ('INS_CHAMPS_NOM', 'ga_nom');
|
|
|
29 |
/** Champs prénom */
|
|
|
30 |
define ('INS_CHAMPS_PRENOM', 'ga_prenom');
|
|
|
31 |
/** Champs mot de passe */
|
|
|
32 |
define ('INS_CHAMPS_PASSE', 'ga_mot_de_passe');
|
1088 |
florian |
33 |
/** Champs identifiant pays */
|
|
|
34 |
define ('INS_CHAMPS_PAYS', 'ga_ce_i18n');
|
|
|
35 |
/** Nom de la table des départements */
|
|
|
36 |
define ('INS_TABLE_DPT', 'gen_departement');
|
|
|
37 |
/** Nom de la table des pays */
|
|
|
38 |
define ('INS_TABLE_PAYS', 'gen_i18n_pays');
|
|
|
39 |
/** Champs identifiant du pays de la table des pays*/
|
|
|
40 |
define ('INS_CHAMPS_ID_PAYS', 'gip_id_pays');
|
|
|
41 |
/** Champs nom du pays de la table des pays*/
|
|
|
42 |
define ('INS_CHAMPS_LABEL_PAYS', 'gip_nom_pays_traduit');
|
|
|
43 |
/** Champs qui contient la localisation */
|
|
|
44 |
define ('INS_CHAMPS_I18N_PAYS', ' gip_id_i18n') ;
|
448 |
ddelon |
45 |
?>
|