Subversion Repositories Applications.papyrus

Rev

Rev 872 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 872 Rev 926
Line 17... Line 17...
17
// |                                                                                                      |
17
// |                                                                                                      |
18
// | You should have received a copy of the GNU Lesser General Public                                     |
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                                  |
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                            |
20
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
21
// +------------------------------------------------------------------------------------------------------+
21
// +------------------------------------------------------------------------------------------------------+
22
// CVS : $Id: bottin.config.inc.php,v 1.10 2006-06-29 07:47:22 alexandre_tb Exp $
22
// CVS : $Id: bottin.config.inc.php,v 1.11 2006-09-12 15:40:33 alexandre_tb Exp $
23
/**
23
/**
24
* Fichier de configuration de l'application d'inscription/annuaire
24
* Fichier de configuration de l'application d'inscription/annuaire
25
*
25
*
26
* A éditer de façon spécifique à chaque déploiement
26
* A éditer de façon spécifique à chaque déploiement
27
*
27
*
Line 30... Line 30...
30
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
30
*@author        Alexandre GRANIER <alexandre@tela-botanica.org>
31
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
31
*@author        Florian SCHMITT <florian@ecole-et-nature.org>
32
//Autres auteurs :
32
//Autres auteurs :
33
*@author        Aucun
33
*@author        Aucun
34
*@copyright     Tela-Botanica 2000-2004
34
*@copyright     Tela-Botanica 2000-2004
35
*@version       $Revision: 1.10 $ $Date: 2006-06-29 07:47:22 $
35
*@version       $Revision: 1.11 $ $Date: 2006-09-12 15:40:33 $
36
// +------------------------------------------------------------------------------------------------------+
36
// +------------------------------------------------------------------------------------------------------+
37
*/
37
*/
38
//================================= CONSTANTES DB ==================================
38
//================================= CONSTANTES DB ==================================
39
/** Nom de la table Annuaire */
39
/** Nom de la table Annuaire */
40
define ('INS_ANNUAIRE', 'annuaire');
40
define ('INS_ANNUAIRE', 'annuaire');
41
/** Nom de la table des départements */ 
41
/** Nom de la table des départements */ 
42
define ('INS_TABLE_DPT', 'gen_departement');
42
define ('INS_TABLE_DPT', 'gen_departement');
43
/** Nom de la table des pays */
43
/** Nom de la table des pays */
44
define ('INS_TABLE_PAYS', 'carto_PAYS');
44
define ('INS_TABLE_PAYS', 'gen_i18n_pays');
45
/** Champs identifiant */
45
/** Champs identifiant */
46
define ('INS_CHAMPS_ID', 'a_id');                   
46
define ('INS_CHAMPS_ID', 'a_id');                   
47
/** Champs adresse mail */
47
/** Champs adresse mail */
48
define ('INS_CHAMPS_MAIL', 'a_mail');
48
define ('INS_CHAMPS_MAIL', 'a_mail');
49
/** Champs nom */
49
/** Champs nom */
Line 77... Line 77...
77
/** Champs numéro de fax */
77
/** Champs numéro de fax */
78
define ('INS_CHAMPS_FAX', 'a_fax');
78
define ('INS_CHAMPS_FAX', 'a_fax');
79
/** Champs d'appartenance à une structure */
79
/** Champs d'appartenance à une structure */
80
define ('INS_CHAMPS_STRUCTURE', 'a_ce_structure');
80
define ('INS_CHAMPS_STRUCTURE', 'a_ce_structure');
81
/** Champs identifiant du pays de la table des pays*/
81
/** Champs identifiant du pays de la table des pays*/
82
define ('INS_CHAMPS_ID_PAYS', 'CP_ID_Pays');
82
define ('INS_CHAMPS_ID_PAYS', 'gip_id_pays');
83
/** Champs nom du pays de la table des pays*/
83
/** Champs nom du pays de la table des pays*/
84
define ('INS_CHAMPS_LABEL_PAYS', 'CP_Intitule_pays');
84
define ('INS_CHAMPS_LABEL_PAYS', 'gip_nom_pays_traduit');
85
/** Champs qui contient la localisation */
85
/** Champs qui contient la localisation */
86
define ('INS_CHAMPS_I18N_PAYS', 'CP_Langue_intitule') ;
86
define ('INS_CHAMPS_I18N_PAYS', 'gip_nom_pays_traduit') ;
87
/** Champs identifiant du département de la table des departement*/
87
/** Champs identifiant du département de la table des departement*/
88
define ('INS_CHAMPS_ID_DEPARTEMENT','gd_id_departement');
88
define ('INS_CHAMPS_ID_DEPARTEMENT','gd_id_departement');
89
/** Champs nom du département de la table des departement*/
89
/** Champs nom du département de la table des departement*/
90
define ('INS_CHAMPS_NOM_DEPARTEMENT','gd_nom');
90
define ('INS_CHAMPS_NOM_DEPARTEMENT','gd_nom');
91
/** Champs pour l'abonnement à une liste, laisser vide si vous ne souhaitez pas d'inscription' */
91
/** Champs pour l'abonnement à une liste, laisser vide si vous ne souhaitez pas d'inscription' */
Line 239... Line 239...
239
 
239
 
240
$GLOBALS['mail_admin'] = array ('admin@domaine.net');
240
$GLOBALS['mail_admin'] = array ('admin@domaine.net');
241
/* +--Fin du code ----------------------------------------------------------------------------------------+
241
/* +--Fin du code ----------------------------------------------------------------------------------------+
242
*
242
*
-
 
243
* $Log: not supported by cvs2svn $
-
 
244
* Revision 1.10  2006/06/29 07:47:22  alexandre_tb
-
 
245
* ajout du tableau mail_admin
243
* $Log: not supported by cvs2svn $
246
*
244
* Revision 1.9  2006/04/28 12:44:05  florian
247
* Revision 1.9  2006/04/28 12:44:05  florian
245
* integration bazar
248
* integration bazar
246
*
249
*
247
* Revision 1.8  2006/04/10 09:51:28  alexandre_tb
250
* Revision 1.8  2006/04/10 09:51:28  alexandre_tb