4 |
david |
1 |
<?php
|
|
|
2 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
3 |
// | PHP version 4.1 |
|
|
|
4 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
5 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
6 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
7 |
// | This library is free software; you can redistribute it and/or |
|
|
|
8 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
9 |
// | License as published by the Free Software Foundation; either |
|
|
|
10 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
11 |
// | |
|
|
|
12 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
13 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
14 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
15 |
// | Lesser General Public License for more details. |
|
|
|
16 |
// | |
|
|
|
17 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
18 |
// | License along with this library; if not, write to the Free Software |
|
|
|
19 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
20 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
21 |
/**
|
|
|
22 |
* Fichier de configuration de l'annuaire
|
|
|
23 |
*
|
|
|
24 |
* A éditer de façon spécifique à chaque déploiement
|
|
|
25 |
*
|
|
|
26 |
*@package inscription
|
|
|
27 |
//Auteur original :
|
|
|
28 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
29 |
//Autres auteurs :
|
406 |
jpm |
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
4 |
david |
31 |
*@copyright Tela-Botanica 2000-2004
|
406 |
jpm |
32 |
*@version $Id: ann_config.inc.php,v 1.2 2005/03/08 09:43:34 alex Exp $
|
4 |
david |
33 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
34 |
*/
|
|
|
35 |
|
186 |
jpm |
36 |
// Paramêtres indiquant que l'on est en français pourpermettre la mise en majuscule des caractères accentués
|
406 |
jpm |
37 |
setlocale(LC_CTYPE, 'fr_FR');
|
4 |
david |
38 |
|
|
|
39 |
/**
|
|
|
40 |
//=========================DEFINITION DE VARIABLES =================================
|
|
|
41 |
* Définition des variables globales
|
|
|
42 |
//==================================================================================
|
|
|
43 |
*/
|
406 |
jpm |
44 |
$GLOBALS['AUTH'] =& $GLOBALS['_GEN_commun']['pear_auth'] ;
|
|
|
45 |
$GLOBALS['ann_db'] =& $GLOBALS['_GEN_commun']['pear_db'] ;
|
589 |
aurelien |
46 |
$GLOBALS['ins_db'] =& $GLOBALS['_GEN_commun']['pear_db'] ;
|
4 |
david |
47 |
|
|
|
48 |
/**
|
|
|
49 |
//==================================== LES URLS ==================================
|
|
|
50 |
* Constantes liées à l'utilisation des url
|
|
|
51 |
//==================================================================================
|
|
|
52 |
*/
|
406 |
jpm |
53 |
$GLOBALS['ann_url'] =& $GLOBALS['_GEN_commun']['url'];//l'url de base de l'application, un objet Net_URL
|
181 |
jpm |
54 |
// Créer cet objet par $GLOBALS['ins_url'] = new Net_URL('http://....') ;
|
406 |
jpm |
55 |
define('ANN_URL_ACTUALITE', 'http://www.tela-botanica.org/actu/article220.html') ;
|
|
|
56 |
/** Variable définissant la lettre par défaut du parcour alphabétique.*/
|
|
|
57 |
define('ANN_LETTRE_DEFAUT', 'A') ;// une lettre de l'aphabet ou "tous"
|
|
|
58 |
/** Variable définissant si oui ou non on affiche l'entrée "tous" dans le parcour alphabétique.*/
|
|
|
59 |
define('ANN_TOUS_BOOL', false) ;// true ou false
|
4 |
david |
60 |
/**
|
|
|
61 |
//==================================== LES CHEMINS =================================
|
|
|
62 |
* Constantes définissant les chemins d'accé au différents fichiers inclus dans les
|
|
|
63 |
* applications.
|
|
|
64 |
//==================================================================================
|
|
|
65 |
*/
|
406 |
jpm |
66 |
define('ANN_CHEMIN_APPLI','client/annuaire/');//le chemin vers l'application courrante
|
|
|
67 |
define('ANN_CHEMIN_LIBRAIRIE', ANN_CHEMIN_APPLI.'bibliotheque/');//le chemin de la librairie de fichier php
|
4 |
david |
68 |
/**
|
|
|
69 |
//==================================== CONSTANTES ==================================
|
|
|
70 |
* Constantes des noms de tables et de champs dans l'annuaire
|
|
|
71 |
//==================================================================================
|
|
|
72 |
*/
|
210 |
jpm |
73 |
define ("ANN_ANNUAIRE", "annuaire_tela");
|
|
|
74 |
define ("ANN_CHAMPS_NOM", "U_NAME"); // Nom du champs nom
|
|
|
75 |
define ("ANN_CHAMPS_MAIL", "U_MAIL"); // Nom du champs mail
|
|
|
76 |
define ("ANN_CHAMPS_PRENOM", "U_SURNAME"); // Nom du champs prénom
|
|
|
77 |
define ("ANN_CHAMPS_ID", "U_ID"); // Nom du champs id
|
|
|
78 |
define ("ANN_CHAMPS_DATE_INS", "U_DATE");
|
|
|
79 |
define ("ANN_CHAMPS_CODE_POSTAL", "U_ZIP_CODE");
|
|
|
80 |
define ("ANN_CHAMPS_VILLE", "U_CITY");
|
|
|
81 |
define ("ANN_CHAMPS_PAYS", "U_COUNTRY");
|
|
|
82 |
|
|
|
83 |
define ("ANN_TABLE_PAYS", "gen_COUNTRY");
|
|
|
84 |
define ("ANN_GC_ID", "GC_ID");
|
|
|
85 |
define ("ANN_GC_NOM", "GC_NAME");
|
|
|
86 |
|
4 |
david |
87 |
define ("ANN_TABLE_DEPARTEMENT", "gen_FRENCH_DPT") ;
|
|
|
88 |
|
521 |
jpm |
89 |
define ('MAIL_MODERATION','moderation@tela-botanica.org') ;
|
|
|
90 |
|
589 |
aurelien |
91 |
/**
|
|
|
92 |
//==================================== CONSTANTES ==================================
|
|
|
93 |
* Constantes des applications extérieures
|
|
|
94 |
//==================================================================================
|
|
|
95 |
*/
|
|
|
96 |
define ('INS_UTILISE_LISTE', true);
|
|
|
97 |
define ('INS_MAIL_INSCRIPTION_LISTE', 'actu-subscribe@tela-botanica.org');
|
|
|
98 |
define ('INS_MAIL_DESINSCRIPTION_LISTE', 'actu-unsubscribe@tela-botanica.org');
|
|
|
99 |
|
|
|
100 |
define ('INS_UTILISE_SPIP', 1);
|
|
|
101 |
if (INS_UTILISE_SPIP) {
|
|
|
102 |
define ('INS_BDD_SPIP', 'tela_prod_spip_actu');
|
|
|
103 |
}
|
|
|
104 |
|
|
|
105 |
define ('ANNUAIRE_ADMIN', 'gen_annuaire');
|
|
|
106 |
define ('ANNUAIRE_ADMIN_ID', 'ga_id_administrateur');
|
|
|
107 |
|
|
|
108 |
define(INS_CHAMPS_ID, 'U_ID');
|
|
|
109 |
define(INS_CHAMPS_MAIL, 'U_MAIL');
|
|
|
110 |
define(INS_ANNUAIRE, 'annuaire_tela');
|
|
|
111 |
define(INS_CHAMPS_NOM, 'U_NAME');
|
|
|
112 |
define(INS_CHAMPS_PRENOM, 'U_SURNAME');
|
|
|
113 |
|
|
|
114 |
|
499 |
jpm |
115 |
/** Tableau global contenant les mails des administrateurs. */
|
|
|
116 |
// Liste des personne recevant le mail après envoie de courriel par l'annuaire
|
589 |
aurelien |
117 |
$GLOBALS['mail_admin'] = array ('Accueil <accueil@tela-botanica.org>',
|
|
|
118 |
'Daniel MATHIEU <dmathieu@tela-botanica.org>',
|
499 |
jpm |
119 |
'Jean-Pascal MILCENT <jpm@tela-botanica.org>',
|
589 |
aurelien |
120 |
'Élise MOUYSSET <elise@tela-botanica.org>');
|
4 |
david |
121 |
?>
|