470 |
alexandre_ |
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 |
// +------------------------------------------------------------------------------------------------------+
|
671 |
alexandre_ |
22 |
// CVS : $Id: bottin.config.inc.php,v 1.5 2005-12-19 13:16:38 alexandre_tb Exp $
|
470 |
alexandre_ |
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
|
671 |
alexandre_ |
35 |
*@version $Revision: 1.5 $ $Date: 2005-12-19 13:16:38 $
|
470 |
alexandre_ |
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 mot de passe */
|
|
|
54 |
define ('INS_CHAMPS_PASSE', 'a_mot_de_passe');
|
|
|
55 |
/** Champs identifiant pays */
|
|
|
56 |
define ('INS_CHAMPS_PAYS', 'a_ce_pays');
|
|
|
57 |
/** Champs code postal */
|
|
|
58 |
define ('INS_CHAMPS_CODE_POSTAL', 'a_code_postal');
|
|
|
59 |
/** Champs département */
|
|
|
60 |
define ('INS_CHAMPS_DEPARTEMENT', 'a_numero_dpt');
|
|
|
61 |
/** Champs adresse 1 */
|
|
|
62 |
define ('INS_CHAMPS_ADRESSE_1', 'a_adresse1');
|
|
|
63 |
/** Champs adresse 2 */
|
|
|
64 |
define ('INS_CHAMPS_ADRESSE_2', 'a_adresse2');
|
|
|
65 |
/** Champs ville */
|
|
|
66 |
define ('INS_CHAMPS_VILLE', 'a_ville');
|
|
|
67 |
/** Champs date de l'inscription */
|
|
|
68 |
define ('INS_CHAMPS_DATE_INSCRIPTION', 'a_date_inscription');
|
|
|
69 |
/** Champs pour désigner si c'est l'inscription d'une structure */
|
|
|
70 |
define ('INS_CHAMPS_EST_STRUCTURE', 'a_est_structure');
|
|
|
71 |
/** Champs sigle de la structure */
|
|
|
72 |
define ('INS_CHAMPS_SIGLE_STRUCTURE', 'a_sigle_structure');
|
|
|
73 |
/** Champs numéro de téléphone */
|
|
|
74 |
define ('INS_CHAMPS_TELEPHONE', 'a_telephone');
|
|
|
75 |
/** Champs numéro de fax */
|
|
|
76 |
define ('INS_CHAMPS_FAX', 'a_fax');
|
|
|
77 |
/** Champs d'appartenance à une structure */
|
|
|
78 |
define ('INS_CHAMPS_STRUCTURE', 'a_ce_structure');
|
|
|
79 |
/** Champs identifiant du pays de la table des pays*/
|
603 |
florian |
80 |
define ('INS_CHAMPS_ID_PAYS', 'gip_id_pays');
|
470 |
alexandre_ |
81 |
/** Champs nom du pays de la table des pays*/
|
668 |
alexandre_ |
82 |
define ('INS_CHAMPS_LABEL_PAYS', 'gip_nom_pays_traduit');
|
|
|
83 |
/** Champs qui contient la localisation */
|
|
|
84 |
define ('INS_CHAMPS_I18N_PAYS', 'gip_id_i18n') ;
|
470 |
alexandre_ |
85 |
/** Champs identifiant du département de la table des departement*/
|
|
|
86 |
define ('INS_CHAMPS_ID_DEPARTEMENT','gd_id_departement');
|
|
|
87 |
/** Champs nom du département de la table des departement*/
|
|
|
88 |
define ('INS_CHAMPS_NOM_DEPARTEMENT','gd_nom');
|
483 |
alexandre_ |
89 |
/** Champs pour l'abonnement à une liste, laisser vide si vous ne souhaitez pas d'inscription' */
|
603 |
florian |
90 |
define ('INS_CHAMPS_LETTRE', 'a_lettre');
|
470 |
alexandre_ |
91 |
/** Champs de la date d'inscription */
|
|
|
92 |
define ('INS_CHAMPS_DATE', 'a_date_inscription');
|
|
|
93 |
/** Champs du site Internet*/
|
|
|
94 |
define ('INS_CHAMPS_SITE_INTERNET', 'a_site_internet');
|
|
|
95 |
/** Champs pour la vue sur carto*/
|
|
|
96 |
define ('INS_CHAMPS_VISIBLE', 'a_voir_sur_carto');
|
|
|
97 |
/** Champs pour la vue sur carto*/
|
|
|
98 |
define ('INS_CHAMPS_NUM_AGREMENT', 'a_num_agrement_fpc');
|
|
|
99 |
|
483 |
alexandre_ |
100 |
if (INS_CHAMPS_LETTRE != '') {
|
|
|
101 |
/** adresse d'inscription à la newsletter */
|
671 |
alexandre_ |
102 |
define ('INS_MAIL_INSCRIPTION_LISTE', 'newsletter-subscribe@domaine.org');
|
483 |
alexandre_ |
103 |
/** adresse de désinscription à la newsletter */
|
671 |
alexandre_ |
104 |
define ('INS_MAIL_DESINSCRIPTION_LISTE', 'newsletter-unsubscribe@domaine.org');
|
483 |
alexandre_ |
105 |
}
|
470 |
alexandre_ |
106 |
|
|
|
107 |
//teste si l'on est dans l'application Papyrus
|
|
|
108 |
if (!defined('PAP_VERSION')) { //pas dans Papyrus
|
|
|
109 |
//================================ BASE DE DONNEES =================================
|
|
|
110 |
define ('INS_PROTOCOLE', 'mysql') ;
|
|
|
111 |
define ('INS_UTILISATEUR', '') ;
|
|
|
112 |
define ('INS_MOT_DE_PASSE_DB', '') ;
|
|
|
113 |
define ('INS_HOTE', 'localhost') ;
|
|
|
114 |
define ('INS_BASE', '') ;
|
|
|
115 |
define ('INS_TYPE_ENCODAGE','MD5');
|
|
|
116 |
|
|
|
117 |
// Formation du dsn
|
|
|
118 |
$dsn = INS_PROTOCOLE.'://'.INS_UTILISATEUR.':'.INS_MOT_DE_PASSE_DB.'@'.INS_HOTE.'/'.INS_BASE;
|
|
|
119 |
|
603 |
florian |
120 |
include_once PAP_CHEMIN_RACINE.'api/pear/DB.php'; //appel de la librairie DB de PEAR
|
470 |
alexandre_ |
121 |
/** Variable globale contenant l'objet d'accès à la base de donnée */
|
|
|
122 |
$GLOBALS['ins_db'] =& DB::connect($dsn);
|
|
|
123 |
|
|
|
124 |
//=============================== AUTHENTIFICATION =================================
|
603 |
florian |
125 |
include_once PAP_CHEMIN_RACINE.'api/pear/Auth.php'; //appel de la librairie Auth de PEAR
|
470 |
alexandre_ |
126 |
/** Nom de la session PHP */
|
|
|
127 |
define ('INS_NOM_SESSION','Educ-Envir.org');
|
|
|
128 |
/** Durée de la session PHP */
|
|
|
129 |
define ('INS_DUREE_SESSION',3600*12);
|
|
|
130 |
/** Tableau des parametres de l'authentification */
|
|
|
131 |
$params = array(
|
|
|
132 |
'dsn' => $dsn,
|
668 |
alexandre_ |
133 |
'table' => INS_ANNUAIRE,
|
470 |
alexandre_ |
134 |
'usernamecol' => INS_CHAMPS_MAIL,
|
|
|
135 |
'passwordcol' => INS_CHAMPS_MOT_DE_PASSE
|
|
|
136 |
);
|
|
|
137 |
/** Variable globale contenant l'objet d'authentification de l'application, un objet AUTH*/
|
|
|
138 |
$GLOBALS['AUTH']= &new Auth($GLOBALS['ins_db'], $params );
|
|
|
139 |
$GLOBALS['AUTH']->setSessionname(INS_NOM_SESSION);
|
|
|
140 |
$GLOBALS['AUTH']->setExpire(INS_DUREE_SESSION);
|
|
|
141 |
$GLOBALS['AUTH']->setShowLogin(false);
|
|
|
142 |
|
|
|
143 |
//==================================== LES URLS ====================================
|
603 |
florian |
144 |
include_once PAP_CHEMIN_RACINE.'api/pear/Net_URL.php'; //appel de la librairie Net_URL de PEAR
|
470 |
alexandre_ |
145 |
/** Variable globale contenant l'objet d'accès à l'URL de base de l'application, un objet Net_URL*/
|
|
|
146 |
$GLOBALS['ins_url'] = new Net_URL('http://localhost/');
|
|
|
147 |
|
|
|
148 |
//===================================== CHEMINS ====================================
|
|
|
149 |
/** Chemin de l'application (mettre un / à la fin) */
|
|
|
150 |
define ('INS_CHEMIN_APPLI', '/');
|
|
|
151 |
|
|
|
152 |
//===================================== LANGUES ====================================
|
|
|
153 |
/** Choix de la langue par défaut de l'application */
|
|
|
154 |
define ('INS_LANGUE_DEFAUT', 'fr');
|
|
|
155 |
include_once INS_CHEMIN_APPLI.'langues/ins_annuaire.langue.'.INS_LANGUE_DEFAUT.'.inc.php'; //appel du fichier de constantes des langues
|
|
|
156 |
|
|
|
157 |
|
|
|
158 |
} else { //dans Papyrus
|
|
|
159 |
//================================ BASE DE DONNEES =================================
|
|
|
160 |
/** Variable globale contenant l'objet d'accès à la base de données de l'application, un objet DB*/
|
603 |
florian |
161 |
$GLOBALS['ins_db'] =& $GLOBALS['_GEN_commun']['pear_db'];
|
470 |
alexandre_ |
162 |
|
|
|
163 |
//=========================AUTHENTIFICATION=================================
|
|
|
164 |
/** Variable globale contenant l'objet d'authentification de l'application, un objet AUTH*/
|
483 |
alexandre_ |
165 |
$GLOBALS['AUTH'] =& $GLOBALS['_GEN_commun']['pear_auth'];
|
470 |
alexandre_ |
166 |
|
|
|
167 |
//==================================== LES URLS ====================================
|
|
|
168 |
/** Variable globale contenant l'objet d'accès à l'URL de base de l'application, un objet Net_URL*/
|
|
|
169 |
$GLOBALS['ins_url'] =& $GLOBALS['_GEN_commun']['url'];
|
|
|
170 |
|
|
|
171 |
//===================================== CHEMINS ====================================
|
|
|
172 |
/** Chemin de l'application (mettre un / à la fin) */
|
|
|
173 |
define ('INS_CHEMIN_APPLI', 'client/bottin/');
|
|
|
174 |
|
|
|
175 |
//===================================== LANGUES ====================================
|
|
|
176 |
/** Choix de la langue par défaut de l'application */
|
|
|
177 |
define ('INS_LANGUE_DEFAUT', $GLOBALS['_GEN_commun']['i18n']) ;
|
603 |
florian |
178 |
include_once INS_CHEMIN_APPLI.'langues/bottin.langue_'.INS_LANGUE_DEFAUT.'.inc.php'; //appel du fichier de constantes des langues
|
470 |
alexandre_ |
179 |
}
|
|
|
180 |
|
483 |
alexandre_ |
181 |
|
603 |
florian |
182 |
/** Définir la présence d'un formulaire d'inscription de structure (mettre à 1 pour oui, 0 pour non */
|
|
|
183 |
define ('INS_FORMULAIRE_STRUCTURE', 1);
|
483 |
alexandre_ |
184 |
|
603 |
florian |
185 |
/** Définir la nécessité d'envoyer un message de confirmation d'inscription (mettre à 1 pour oui, 0 pour non */
|
|
|
186 |
define ('INS_MAIL_VALIDATION_INSCRIPTION', 0);
|
|
|
187 |
|
|
|
188 |
/** Adresse de messagerie de l'administrateur, pour suivre les inscriptions */
|
|
|
189 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION', 'nom@domaine.ext');
|
|
|
190 |
|
|
|
191 |
/** Sujet du message envoyé pour l'inscription */
|
|
|
192 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', '[nom] Inscription');
|
|
|
193 |
|
|
|
194 |
/** L'inscription génère t'elle l'inscription à un Spip? Mettre à 1 pour oui , et 0 pour non */
|
|
|
195 |
define ('INS_UTILISE_SPIP', 0);
|
|
|
196 |
if (INS_UTILISE_SPIP) {
|
|
|
197 |
/** Chemin d'accès au Spip */
|
|
|
198 |
define ('INS_CHEMIN_SPIP', '');
|
|
|
199 |
}
|
|
|
200 |
|
|
|
201 |
/** L'inscription génère t'elle l'inscription à un Wikini? Mettre à 1 pour oui , et 0 pour non */
|
|
|
202 |
define ('INS_UTILISE_WIKINI', 1);
|
|
|
203 |
if (INS_UTILISE_WIKINI) {
|
|
|
204 |
/** Le nom du champs contenant le nom wikini dans l'annuaire */
|
|
|
205 |
define ('INS_CHAMPS_NOM_WIKINI', 'a_nom_wikini');
|
|
|
206 |
}
|
|
|
207 |
|
|
|
208 |
/** L'inscription utilise t'elle le module projet? Mettre à 1 pour oui , et 0 pour non */
|
|
|
209 |
define ('INS_UTILISE_MODULE_PROJET', 1) ;
|
|
|
210 |
if (INS_UTILISE_MODULE_PROJET) {
|
|
|
211 |
define ('INS_CHEMIN_PROJET', 'client/projet/') ;
|
|
|
212 |
}
|
|
|
213 |
|
483 |
alexandre_ |
214 |
/**
|
|
|
215 |
//==================================== PARAMETRAGE =================================
|
|
|
216 |
* Pour gérer la réécriture d'url de l'inscription
|
|
|
217 |
* Cela nécessite une ligne dans le fichier .htaccess, par exemple
|
|
|
218 |
* RewriteRule ^ins([0-9a-z]*)$ papyrus.php?menu=22&id=$1 [L]
|
|
|
219 |
* Cela sert à racourcir l'URL de confirmation d'inscription
|
|
|
220 |
//==================================================================================
|
|
|
221 |
*/
|
|
|
222 |
|
|
|
223 |
define ('INS_UTILISE_REECRITURE_URL', 1) ; // mettre à 1 si on souhaite utiliser la réécriture
|
|
|
224 |
|
|
|
225 |
if (INS_UTILISE_REECRITURE_URL) {
|
|
|
226 |
define ('INS_URL_PREFIXE', 'ins') ; // Indique le préfixe de l'url http://www.mondomaine.org/prefix____
|
|
|
227 |
}
|
|
|
228 |
|
470 |
alexandre_ |
229 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
230 |
*
|
|
|
231 |
* $Log: not supported by cvs2svn $
|
671 |
alexandre_ |
232 |
* Revision 1.4 2005/12/19 11:06:01 alexandre_tb
|
|
|
233 |
* modification dans la table annuaire
|
|
|
234 |
*
|
668 |
alexandre_ |
235 |
* Revision 1.3 2005/11/17 18:48:02 florian
|
|
|
236 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
237 |
*
|
603 |
florian |
238 |
* Revision 1.2 2005/09/29 13:56:48 alexandre_tb
|
|
|
239 |
* En cours de production. Reste à gérer les news letters et d'autres choses.
|
|
|
240 |
*
|
483 |
alexandre_ |
241 |
* Revision 1.1 2005/09/27 13:56:18 alexandre_tb
|
|
|
242 |
* version initiale, les autres fichiers de configurations devraient progressivement disparaitre.
|
|
|
243 |
*
|
470 |
alexandre_ |
244 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
245 |
*/
|
|
|
246 |
?>
|