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 |
// +------------------------------------------------------------------------------------------------------+
|
1088 |
florian |
22 |
// CVS : $Id: bottin.config.inc.php,v 1.15 2006-12-01 16:02:15 florian 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
|
1088 |
florian |
35 |
*@version $Revision: 1.15 $ $Date: 2006-12-01 16:02:15 $
|
470 |
alexandre_ |
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
*/
|
|
|
38 |
//================================= CONSTANTES DB ==================================
|
|
|
39 |
|
|
|
40 |
//teste si l'on est dans l'application Papyrus
|
|
|
41 |
if (!defined('PAP_VERSION')) { //pas dans Papyrus
|
|
|
42 |
//================================ BASE DE DONNEES =================================
|
|
|
43 |
define ('INS_PROTOCOLE', 'mysql') ;
|
|
|
44 |
define ('INS_UTILISATEUR', '') ;
|
|
|
45 |
define ('INS_MOT_DE_PASSE_DB', '') ;
|
|
|
46 |
define ('INS_HOTE', 'localhost') ;
|
|
|
47 |
define ('INS_BASE', '') ;
|
|
|
48 |
define ('INS_TYPE_ENCODAGE','MD5');
|
|
|
49 |
|
|
|
50 |
// Formation du dsn
|
|
|
51 |
$dsn = INS_PROTOCOLE.'://'.INS_UTILISATEUR.':'.INS_MOT_DE_PASSE_DB.'@'.INS_HOTE.'/'.INS_BASE;
|
|
|
52 |
|
603 |
florian |
53 |
include_once PAP_CHEMIN_RACINE.'api/pear/DB.php'; //appel de la librairie DB de PEAR
|
470 |
alexandre_ |
54 |
/** Variable globale contenant l'objet d'accès à la base de donnée */
|
|
|
55 |
$GLOBALS['ins_db'] =& DB::connect($dsn);
|
|
|
56 |
|
|
|
57 |
//=============================== AUTHENTIFICATION =================================
|
603 |
florian |
58 |
include_once PAP_CHEMIN_RACINE.'api/pear/Auth.php'; //appel de la librairie Auth de PEAR
|
470 |
alexandre_ |
59 |
/** Nom de la session PHP */
|
|
|
60 |
define ('INS_NOM_SESSION','Educ-Envir.org');
|
|
|
61 |
/** Durée de la session PHP */
|
|
|
62 |
define ('INS_DUREE_SESSION',3600*12);
|
|
|
63 |
/** Tableau des parametres de l'authentification */
|
|
|
64 |
$params = array(
|
|
|
65 |
'dsn' => $dsn,
|
668 |
alexandre_ |
66 |
'table' => INS_ANNUAIRE,
|
470 |
alexandre_ |
67 |
'usernamecol' => INS_CHAMPS_MAIL,
|
|
|
68 |
'passwordcol' => INS_CHAMPS_MOT_DE_PASSE
|
|
|
69 |
);
|
|
|
70 |
/** Variable globale contenant l'objet d'authentification de l'application, un objet AUTH*/
|
|
|
71 |
$GLOBALS['AUTH']= &new Auth($GLOBALS['ins_db'], $params );
|
|
|
72 |
$GLOBALS['AUTH']->setSessionname(INS_NOM_SESSION);
|
|
|
73 |
$GLOBALS['AUTH']->setExpire(INS_DUREE_SESSION);
|
|
|
74 |
$GLOBALS['AUTH']->setShowLogin(false);
|
|
|
75 |
|
|
|
76 |
//==================================== LES URLS ====================================
|
603 |
florian |
77 |
include_once PAP_CHEMIN_RACINE.'api/pear/Net_URL.php'; //appel de la librairie Net_URL de PEAR
|
470 |
alexandre_ |
78 |
/** Variable globale contenant l'objet d'accès à l'URL de base de l'application, un objet Net_URL*/
|
|
|
79 |
$GLOBALS['ins_url'] = new Net_URL('http://localhost/');
|
|
|
80 |
|
|
|
81 |
//===================================== CHEMINS ====================================
|
|
|
82 |
/** Chemin de l'application (mettre un / à la fin) */
|
|
|
83 |
define ('INS_CHEMIN_APPLI', '/');
|
|
|
84 |
|
|
|
85 |
//===================================== LANGUES ====================================
|
|
|
86 |
/** Choix de la langue par défaut de l'application */
|
|
|
87 |
define ('INS_LANGUE_DEFAUT', 'fr');
|
|
|
88 |
include_once INS_CHEMIN_APPLI.'langues/ins_annuaire.langue.'.INS_LANGUE_DEFAUT.'.inc.php'; //appel du fichier de constantes des langues
|
|
|
89 |
|
|
|
90 |
|
|
|
91 |
} else { //dans Papyrus
|
|
|
92 |
//================================ BASE DE DONNEES =================================
|
|
|
93 |
/** Variable globale contenant l'objet d'accès à la base de données de l'application, un objet DB*/
|
603 |
florian |
94 |
$GLOBALS['ins_db'] =& $GLOBALS['_GEN_commun']['pear_db'];
|
470 |
alexandre_ |
95 |
|
|
|
96 |
//=========================AUTHENTIFICATION=================================
|
|
|
97 |
/** Variable globale contenant l'objet d'authentification de l'application, un objet AUTH*/
|
483 |
alexandre_ |
98 |
$GLOBALS['AUTH'] =& $GLOBALS['_GEN_commun']['pear_auth'];
|
470 |
alexandre_ |
99 |
|
|
|
100 |
//==================================== LES URLS ====================================
|
|
|
101 |
/** Variable globale contenant l'objet d'accès à l'URL de base de l'application, un objet Net_URL*/
|
|
|
102 |
$GLOBALS['ins_url'] =& $GLOBALS['_GEN_commun']['url'];
|
|
|
103 |
|
|
|
104 |
//===================================== CHEMINS ====================================
|
|
|
105 |
/** Chemin de l'application (mettre un / à la fin) */
|
|
|
106 |
define ('INS_CHEMIN_APPLI', 'client/bottin/');
|
|
|
107 |
|
|
|
108 |
//===================================== LANGUES ====================================
|
|
|
109 |
/** Choix de la langue par défaut de l'application */
|
|
|
110 |
define ('INS_LANGUE_DEFAUT', $GLOBALS['_GEN_commun']['i18n']) ;
|
603 |
florian |
111 |
include_once INS_CHEMIN_APPLI.'langues/bottin.langue_'.INS_LANGUE_DEFAUT.'.inc.php'; //appel du fichier de constantes des langues
|
470 |
alexandre_ |
112 |
}
|
|
|
113 |
|
1088 |
florian |
114 |
// Recherche parametres menu actif : ils ne sont pas present dans le contexte, quel dommage !
|
|
|
115 |
$requete_menu = 'SELECT gm_application_arguments '.
|
|
|
116 |
'FROM gen_menu '.
|
|
|
117 |
'WHERE gm_id_menu = '.$_GET['menu'];
|
|
|
118 |
$resultat_menu = $GLOBALS['_GEN_commun']['pear_db']->query($requete_menu);
|
|
|
119 |
$info_menu = $resultat_menu->fetchRow(DB_FETCHMODE_OBJECT);
|
|
|
120 |
$resultat_menu->free();
|
|
|
121 |
if (isset($info_menu->gm_application_arguments)) {
|
|
|
122 |
$arguments = explode(' ', $info_menu->gm_application_arguments);
|
|
|
123 |
for ($i = 0; $i < count($arguments); $i++) {
|
|
|
124 |
$attr = explode('=', $arguments[$i]);
|
|
|
125 |
if ($attr[0] != '') {
|
|
|
126 |
$info_application->$attr[0] = (isset($attr[1]) ? $attr[1] : '');
|
|
|
127 |
}
|
|
|
128 |
}
|
|
|
129 |
}
|
|
|
130 |
//cas de l'annuaire admin papyrus, on modifie certaines constantes
|
|
|
131 |
if (isset($info_application) && $info_application->type_annuaire==1) {
|
|
|
132 |
include_once INS_CHEMIN_APPLI.'configuration/annuaire_backoffice.config.inc.php';
|
|
|
133 |
} else {
|
|
|
134 |
include_once INS_CHEMIN_APPLI.'configuration/annuaire_backoffice_bottin.config.inc.php';
|
|
|
135 |
}
|
483 |
alexandre_ |
136 |
|
1088 |
florian |
137 |
if (defined('INS_CHAMPS_LETTRE')) {
|
|
|
138 |
/** adresse d'inscription à la newsletter */
|
|
|
139 |
define ('INS_MAIL_INSCRIPTION_LISTE', 'newsletter-subscribe@domaine.org');
|
|
|
140 |
/** adresse de désinscription à la newsletter */
|
|
|
141 |
define ('INS_MAIL_DESINSCRIPTION_LISTE', 'newsletter-unsubscribe@domaine.org');
|
|
|
142 |
}
|
|
|
143 |
|
603 |
florian |
144 |
/** Définir la présence d'un formulaire d'inscription de structure (mettre à 1 pour oui, 0 pour non */
|
|
|
145 |
define ('INS_FORMULAIRE_STRUCTURE', 1);
|
483 |
alexandre_ |
146 |
|
833 |
florian |
147 |
/** Définir la présence d'un formulaire d'inscription de structure (mettre à 1 pour oui, 0 pour non */
|
|
|
148 |
define ('INS_URL_BAZAR', 'http://localhost/papyrus/papyrus.php?menu=16');
|
|
|
149 |
|
|
|
150 |
|
603 |
florian |
151 |
/** Définir la nécessité d'envoyer un message de confirmation d'inscription (mettre à 1 pour oui, 0 pour non */
|
|
|
152 |
define ('INS_MAIL_VALIDATION_INSCRIPTION', 0);
|
|
|
153 |
|
|
|
154 |
/** Adresse de messagerie de l'administrateur, pour suivre les inscriptions */
|
|
|
155 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION', 'nom@domaine.ext');
|
|
|
156 |
|
779 |
alexandre_ |
157 |
$GLOBALS['mail_admin'] = array ('nom@domaine.ext') ; // Liste des personne recevant le mail
|
|
|
158 |
|
603 |
florian |
159 |
/** Sujet du message envoyé pour l'inscription */
|
|
|
160 |
define ('INS_MAIL_ADMIN_APRES_INSCRIPTION_SUJET', '[nom] Inscription');
|
|
|
161 |
|
|
|
162 |
/** L'inscription génère t'elle l'inscription à un Spip? Mettre à 1 pour oui , et 0 pour non */
|
|
|
163 |
define ('INS_UTILISE_SPIP', 0);
|
|
|
164 |
if (INS_UTILISE_SPIP) {
|
|
|
165 |
/** Chemin d'accès au Spip */
|
|
|
166 |
define ('INS_CHEMIN_SPIP', '');
|
|
|
167 |
}
|
|
|
168 |
|
|
|
169 |
/** L'inscription génère t'elle l'inscription à un Wikini? Mettre à 1 pour oui , et 0 pour non */
|
|
|
170 |
define ('INS_UTILISE_WIKINI', 1);
|
|
|
171 |
if (INS_UTILISE_WIKINI) {
|
|
|
172 |
/** Le nom du champs contenant le nom wikini dans l'annuaire */
|
|
|
173 |
define ('INS_CHAMPS_NOM_WIKINI', 'a_nom_wikini');
|
807 |
alexandre_ |
174 |
|
|
|
175 |
/** Le nom Wiki est il genere automatiquement */
|
|
|
176 |
define ('INS_NOM_WIKINI_GENERE', 1) ;
|
603 |
florian |
177 |
}
|
|
|
178 |
|
|
|
179 |
/** L'inscription utilise t'elle le module projet? Mettre à 1 pour oui , et 0 pour non */
|
|
|
180 |
define ('INS_UTILISE_MODULE_PROJET', 1) ;
|
|
|
181 |
if (INS_UTILISE_MODULE_PROJET) {
|
|
|
182 |
define ('INS_CHEMIN_PROJET', 'client/projet/') ;
|
|
|
183 |
}
|
|
|
184 |
|
483 |
alexandre_ |
185 |
/**
|
|
|
186 |
//==================================== PARAMETRAGE =================================
|
|
|
187 |
* Pour gérer la réécriture d'url de l'inscription
|
|
|
188 |
* Cela nécessite une ligne dans le fichier .htaccess, par exemple
|
|
|
189 |
* RewriteRule ^ins([0-9a-z]*)$ papyrus.php?menu=22&id=$1 [L]
|
|
|
190 |
* Cela sert à racourcir l'URL de confirmation d'inscription
|
|
|
191 |
//==================================================================================
|
|
|
192 |
*/
|
|
|
193 |
|
|
|
194 |
define ('INS_UTILISE_REECRITURE_URL', 1) ; // mettre à 1 si on souhaite utiliser la réécriture
|
|
|
195 |
|
|
|
196 |
if (INS_UTILISE_REECRITURE_URL) {
|
779 |
alexandre_ |
197 |
define ('INS_URL_PREFIXE', 'ins_') ; // Indique le préfixe de l'url http://www.mondomaine.org/prefix____
|
483 |
alexandre_ |
198 |
}
|
|
|
199 |
|
470 |
alexandre_ |
200 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
201 |
*
|
|
|
202 |
* $Log: not supported by cvs2svn $
|
1088 |
florian |
203 |
* Revision 1.14 2006/12/01 13:23:17 florian
|
|
|
204 |
* integration annuaire backoffice
|
|
|
205 |
*
|
1081 |
florian |
206 |
* Revision 1.13 2006/09/20 14:56:41 alexandre_tb
|
|
|
207 |
* correction de la valeur par défaut INS_CHAMPS_I18N_PAYS
|
|
|
208 |
*
|
953 |
alexandre_ |
209 |
* Revision 1.12 2006/09/12 15:44:18 alexandre_tb
|
|
|
210 |
* suppression du $GLOBALS['mail_admin'] en double
|
|
|
211 |
*
|
927 |
alexandre_ |
212 |
* Revision 1.11 2006/09/12 15:40:33 alexandre_tb
|
|
|
213 |
* modification des valeurs par défaut
|
|
|
214 |
* utilisation de gen_i18n_pays pour la table des pays
|
|
|
215 |
*
|
926 |
alexandre_ |
216 |
* Revision 1.10 2006/06/29 07:47:22 alexandre_tb
|
|
|
217 |
* ajout du tableau mail_admin
|
|
|
218 |
*
|
872 |
alexandre_ |
219 |
* Revision 1.9 2006/04/28 12:44:05 florian
|
|
|
220 |
* integration bazar
|
|
|
221 |
*
|
833 |
florian |
222 |
* Revision 1.8 2006/04/10 09:51:28 alexandre_tb
|
|
|
223 |
* ajout de la constante INS_NOM_WIKINI_GENERE.
|
|
|
224 |
*
|
807 |
alexandre_ |
225 |
* Revision 1.7 2006/04/04 12:23:05 florian
|
|
|
226 |
* modifs affichage fiches, généricité de la carto, modification totale de l'appli annuaire
|
|
|
227 |
*
|
805 |
florian |
228 |
* Revision 1.6 2006/03/15 11:04:27 alexandre_tb
|
|
|
229 |
* ajout du tableau mail_admin qui contient la liste des administrateurs qui recevront un double du mail d'inscription
|
|
|
230 |
*
|
779 |
alexandre_ |
231 |
* Revision 1.5 2005/12/19 13:16:38 alexandre_tb
|
|
|
232 |
* généricité du fichier de config
|
|
|
233 |
*
|
671 |
alexandre_ |
234 |
* Revision 1.4 2005/12/19 11:06:01 alexandre_tb
|
|
|
235 |
* modification dans la table annuaire
|
|
|
236 |
*
|
668 |
alexandre_ |
237 |
* Revision 1.3 2005/11/17 18:48:02 florian
|
|
|
238 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
239 |
*
|
603 |
florian |
240 |
* Revision 1.2 2005/09/29 13:56:48 alexandre_tb
|
|
|
241 |
* En cours de production. Reste à gérer les news letters et d'autres choses.
|
|
|
242 |
*
|
483 |
alexandre_ |
243 |
* Revision 1.1 2005/09/27 13:56:18 alexandre_tb
|
|
|
244 |
* version initiale, les autres fichiers de configurations devraient progressivement disparaitre.
|
|
|
245 |
*
|
470 |
alexandre_ |
246 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
247 |
*/
|
|
|
248 |
?>
|