Subversion Repositories Applications.papyrus

Rev

Rev 1372 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1088 florian 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.1                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This library is free software; you can redistribute it and/or                                        |
9
// | modify it under the terms of the GNU Lesser General Public                                           |
10
// | License as published by the Free Software Foundation; either                                         |
11
// | version 2.1 of the License, or (at your option) any later version.                                   |
12
// |                                                                                                      |
13
// | This library is distributed in the hope that it will be useful,                                      |
14
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
15
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                                    |
16
// | Lesser General Public License for more details.                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
19
// | License along with this library; if not, write to the Free Software                                  |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id$
23
/**
24
* Fichier de configuration de l'application d'inscription/annuaire
25
*
26
* A éditer de façon spécifique à chaque déploiement
27
*
28
*@package ins_annuaire
29
//Auteur original :
30
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
31
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
32
//Autres auteurs :
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2004
35
*@version       $Revision$ $Date$
36
// +------------------------------------------------------------------------------------------------------+
37
*/
38
//================================= CONSTANTES DB ==================================
39
/** Nom de la table Annuaire */
40
define ('INS_ANNUAIRE', 'annuaire');
41
/** Nom de la table des départements */
42
define ('INS_TABLE_DPT', 'gen_departement');
43
/** Nom de la table des pays */
44
define ('INS_TABLE_PAYS', 'gen_i18n_pays');
45
/** Champs identifiant */
46
define ('INS_CHAMPS_ID', 'a_id');
47
/** Champs adresse mail */
48
define ('INS_CHAMPS_MAIL', 'a_mail');
49
/** Champs nom */
50
define ('INS_CHAMPS_NOM', 'a_nom');
51
/** Champs prénom */
52
define ('INS_CHAMPS_PRENOM', 'a_prenom');
53
/** Champs description */
54
define ('INS_CHAMPS_DESCRIPTION','a_description');
55
/** Champs mot de passe */
56
define ('INS_CHAMPS_PASSE', 'a_mot_de_passe');
57
/** Champs identifiant pays */
58
define ('INS_CHAMPS_PAYS', 'a_ce_pays');
59
/** Champs code postal */
60
define ('INS_CHAMPS_CODE_POSTAL', 'a_code_postal');
61
/** Champs département */
62
define ('INS_CHAMPS_DEPARTEMENT', 'a_numero_dpt');
63
/** Champs adresse 1 */
64
define ('INS_CHAMPS_ADRESSE_1', 'a_adresse1');
65
/** Champs adresse 2 */
66
define ('INS_CHAMPS_ADRESSE_2', 'a_adresse2');
67
/** Champs ville */
68
define ('INS_CHAMPS_VILLE', 'a_ville');
69
/** Champs date de l'inscription */
70
define ('INS_CHAMPS_DATE_INSCRIPTION', 'a_date_inscription');
71
/** Champs pour désigner si c'est l'inscription d'une structure */
72
define ('INS_CHAMPS_EST_STRUCTURE', 'a_est_structure');
73
/** Champs sigle de la structure */
74
define ('INS_CHAMPS_SIGLE_STRUCTURE', 'a_sigle_structure');
75
/** Champs numéro de téléphone */
76
define ('INS_CHAMPS_TELEPHONE', 'a_telephone');
77
/** Champs numéro de fax */
78
define ('INS_CHAMPS_FAX', 'a_fax');
79
/** Champs d'appartenance à une structure */
80
define ('INS_CHAMPS_STRUCTURE', 'a_ce_structure');
81
/** Champs identifiant du pays de la table des pays*/
82
define ('INS_CHAMPS_ID_PAYS', 'gip_id_pays');
83
/** Champs nom du pays de la table des pays*/
84
define ('INS_CHAMPS_LABEL_PAYS', 'gip_nom_pays_traduit');
85
/** Champs qui contient la localisation */
86
define ('INS_CHAMPS_I18N_PAYS', ' gip_id_i18n') ;
87
/** Champs identifiant du département de la table des departement*/
88
define ('INS_CHAMPS_ID_DEPARTEMENT','gd_id_departement');
89
/** Champs nom du département de la table des departement*/
90
define ('INS_CHAMPS_NOM_DEPARTEMENT','gd_nom');
91
/** Champs pour l'abonnement à une liste, laisser vide si vous ne souhaitez pas d'inscription' */
92
define ('INS_CHAMPS_LETTRE', 'a_lettre');
93
/** Champs de la date d'inscription */
94
define ('INS_CHAMPS_DATE', 'a_date_inscription');
95
/** Champs du site Internet*/
96
define ('INS_CHAMPS_SITE_INTERNET', 'a_site_internet');
97
/** Champs pour la vue sur carto*/
98
define ('INS_CHAMPS_VISIBLE', 'a_voir_sur_carto');
99
/** Champs pour la vue sur carto*/
100
define ('INS_CHAMPS_NUM_AGREMENT', 'a_num_agrement_fpc');
101
/** Champs pour le logo*/
102
define ('INS_CHAMPS_LOGO', 'a_logo');
103
?>