448 |
ddelon |
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 |
// +------------------------------------------------------------------------------------------------------+
|
1467 |
alexandre_ |
22 |
// CVS : $Id: inscription.php,v 1.27 2007-06-25 09:59:03 alexandre_tb Exp $
|
448 |
ddelon |
23 |
/**
|
|
|
24 |
* Inscription
|
|
|
25 |
*
|
1425 |
alexandre_ |
26 |
* Un module d'inscription, en general ce code est specifique a
|
448 |
ddelon |
27 |
* un site web
|
|
|
28 |
*
|
|
|
29 |
*@package inscription
|
|
|
30 |
//Auteur original :
|
|
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
1421 |
alexandre_ |
34 |
*@copyright Tela-Botanica 2000-2007
|
1467 |
alexandre_ |
35 |
*@version $Revision: 1.27 $ $Date: 2007-06-25 09:59:03 $
|
448 |
ddelon |
36 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
37 |
*/
|
|
|
38 |
|
|
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
40 |
// | ENTETE du PROGRAMME |
|
|
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
471 |
alexandre_ |
42 |
include_once 'configuration/bottin.config.inc.php';
|
1298 |
neiluj |
43 |
include_once INS_CHEMIN_APPLI.'bibliotheque/bottin.fonct.php';
|
1421 |
alexandre_ |
44 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.fonct.php';
|
|
|
45 |
include_once INS_CHEMIN_APPLI.'bibliotheque/bottin.class.php';
|
1425 |
alexandre_ |
46 |
// Inclusion d'une classe personnalise si elle existe
|
1298 |
neiluj |
47 |
if (file_exists (INS_CHEMIN_APPLI.'bibliotheque/inscription.class.local.php')) {
|
|
|
48 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.local.php' ;
|
|
|
49 |
} else {
|
|
|
50 |
include_once INS_CHEMIN_APPLI.'bibliotheque/inscription.class.php';
|
|
|
51 |
}
|
|
|
52 |
|
448 |
ddelon |
53 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
54 |
// | LISTE de FONCTIONS |
|
|
|
55 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
56 |
|
1298 |
neiluj |
57 |
if (!isset($_REQUEST['action'])) {
|
|
|
58 |
$_REQUEST['action']='';
|
|
|
59 |
}
|
1292 |
neiluj |
60 |
|
1298 |
neiluj |
61 |
|
|
|
62 |
if ( isset($_GET['voir_fiche']) or isset($_GET['voir_abonnement']) or isset($_GET['voir_actus']) or isset($_GET['voir_ressources']) or isset($_GET['voir_competences'])
|
|
|
63 |
or (isset($_REQUEST['action'])&&($_REQUEST['action']=='modifier_v'||$_REQUEST['action']=='modifier_v'))
|
|
|
64 |
or ($GLOBALS['AUTH']->getAuth() && ($_REQUEST['action']!='modifier')) ) {
|
|
|
65 |
//---------------le menu de l'appli-----------
|
|
|
66 |
function afficherContenuNavigation () {
|
|
|
67 |
$res =inscription_onglets();
|
|
|
68 |
return $res ;
|
|
|
69 |
}
|
|
|
70 |
}
|
|
|
71 |
|
448 |
ddelon |
72 |
function afficherContenuCorps() {
|
|
|
73 |
$res = '<h1>'.INS_TITRE_INSCRIPTION.'</h1>'."\n" ;
|
1425 |
alexandre_ |
74 |
|
1421 |
alexandre_ |
75 |
// Recuperation de la configuration
|
1425 |
alexandre_ |
76 |
if (isset($_REQUEST['id_inscription'])) {
|
|
|
77 |
$GLOBALS ['ins_config'] = inscription::getConfig($_REQUEST['id_inscription']);
|
|
|
78 |
} else {
|
|
|
79 |
$GLOBALS ['ins_config'] = inscription::getConfig();
|
|
|
80 |
}
|
1467 |
alexandre_ |
81 |
// Template du formulaire
|
|
|
82 |
$GLOBALS['ins_config']['ic_inscription_template'] = inscription::getTemplate(INS_TEMPLATE_FORMULAIRE,
|
|
|
83 |
$GLOBALS['ins_config']['ic_id_inscription']);
|
1437 |
alexandre_ |
84 |
//
|
1425 |
alexandre_ |
85 |
//cas de la deconnexion----------------------------------------------------------------------------------
|
603 |
florian |
86 |
if ($_REQUEST['action'] == 'deconnexion') {
|
448 |
ddelon |
87 |
$GLOBALS['AUTH']->logout() ;
|
|
|
88 |
$_POST['username'] = '' ;
|
|
|
89 |
$_POST['password'] = '' ;
|
1298 |
neiluj |
90 |
return $res.inscription_AUTH_formulaire_login() ;
|
448 |
ddelon |
91 |
}
|
|
|
92 |
|
1425 |
alexandre_ |
93 |
//cas de la desinscription-------------------------------------------------------------------------------
|
603 |
florian |
94 |
if ($_REQUEST['action'] == 'supprimer') {
|
670 |
alexandre_ |
95 |
$id_utilisateur = $GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID) ;
|
1298 |
neiluj |
96 |
// Suppression dans SPIP
|
448 |
ddelon |
97 |
if (INS_UTILISE_SPIP) {
|
603 |
florian |
98 |
desinscription_spip($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID)) ;
|
448 |
ddelon |
99 |
}
|
484 |
alexandre_ |
100 |
// Suppression dans Wikini
|
448 |
ddelon |
101 |
if (INS_UTILISE_WIKINI) {
|
1298 |
neiluj |
102 |
$nom_wiki = $GLOBALS['AUTH']->getAuthData(INS_CHAMPS_NOM_WIKINI) ;
|
484 |
alexandre_ |
103 |
desinscription_interwikini_users($nom_wiki) ;
|
448 |
ddelon |
104 |
}
|
1467 |
alexandre_ |
105 |
|
|
|
106 |
// Lettre d actualite
|
|
|
107 |
desinscription_lettre($GLOBALS['ins_config']['ic_mail_desinscription_news']);
|
1421 |
alexandre_ |
108 |
$msg = '';
|
484 |
alexandre_ |
109 |
// Appel des actions desinscriptions des applications clientes
|
|
|
110 |
$d = dir(GEN_CHEMIN_CLIENT);
|
|
|
111 |
while (false !== ($repertoire = $d->read())) {
|
1421 |
alexandre_ |
112 |
if ($repertoire != '.' || $repertoire != '..') {
|
|
|
113 |
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.desinscription.inc.php'))
|
|
|
114 |
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.desinscription.inc.php' ;
|
|
|
115 |
}
|
|
|
116 |
if ($msg != '') $res .= $msg;
|
484 |
alexandre_ |
117 |
}
|
|
|
118 |
$d->close();
|
1298 |
neiluj |
119 |
|
|
|
120 |
$resultat = $GLOBALS['AUTH']->removeUser($GLOBALS['AUTH']->getUsername()) ;
|
|
|
121 |
if (PEAR::isError($resultat)) {
|
|
|
122 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
|
603 |
florian |
126 |
// Deconnection
|
448 |
ddelon |
127 |
$GLOBALS['AUTH']->logout() ;
|
1467 |
alexandre_ |
128 |
// Destruction du cookie de session de Papyrus : est ce utile?
|
|
|
129 |
setcookie(session_name(), session_id(), time()-3600, '/');
|
|
|
130 |
// Destruction du cookie de permanence de l'identitification de Papyrus
|
|
|
131 |
setcookie(session_name().'-memo', '', time()-3600, '/');
|
|
|
132 |
|
1298 |
neiluj |
133 |
return $res.inscription_AUTH_formulaire_login() ;
|
448 |
ddelon |
134 |
}
|
|
|
135 |
|
603 |
florian |
136 |
//cas de l'envoi de mot de passe par mail----------------------------------------------------------------
|
448 |
ddelon |
137 |
if ($_REQUEST['action'] == 'sendpasswd') {
|
1298 |
neiluj |
138 |
return inscription_envoie_passe()."\n".inscription_formulaire_envoi_passe() ;
|
448 |
ddelon |
139 |
}
|
|
|
140 |
|
603 |
florian |
141 |
//cas de la saisie ou la modification de l'inscription individuelle ou structure
|
606 |
florian |
142 |
if (($_REQUEST['action'] == 'modifier')or($_REQUEST['action'] == 'modifier_v')or($_REQUEST['action'] == 'inscription')or($_REQUEST['action'] == 'inscription_v')) {
|
603 |
florian |
143 |
$formulaire = new HTML_formulaireInscription('formulaire_inscription', 'post', preg_replace('/&/', '&', $GLOBALS['ins_url']->getURL()), '_self', '', 0) ;
|
1425 |
alexandre_ |
144 |
$formulaire->addElement('hidden', 'id_inscription', $_REQUEST['id_inscription']) ;
|
1421 |
alexandre_ |
145 |
if ($_REQUEST['action'] == 'modifier') {
|
|
|
146 |
$formulaire->setDefaults(inscription_formulaire_defaults()) ;
|
|
|
147 |
}
|
603 |
florian |
148 |
$formulaire->construitFormulaire(preg_replace('/&/', '&', $GLOBALS['ins_url']->getURL()));
|
1425 |
alexandre_ |
149 |
if (isset($_REQUEST['id_inscription'])) {
|
|
|
150 |
if ($_REQUEST['id_inscription']==1) {
|
606 |
florian |
151 |
$formulaire->formulaireStructure() ;
|
|
|
152 |
}
|
448 |
ddelon |
153 |
}
|
603 |
florian |
154 |
|
1467 |
alexandre_ |
155 |
|
1437 |
alexandre_ |
156 |
//pour la modification d'une inscription, on charge les valeurs par defauts
|
603 |
florian |
157 |
if ($_REQUEST['action'] == 'modifier') {
|
448 |
ddelon |
158 |
$formulaire->addElement('hidden', 'action', 'modifier_v') ;
|
1298 |
neiluj |
159 |
$formulaire->setDefaults(inscription_formulaire_defaults()) ;
|
448 |
ddelon |
160 |
}
|
|
|
161 |
|
|
|
162 |
if ($_REQUEST['action'] == 'inscription') {
|
484 |
alexandre_ |
163 |
if ($GLOBALS['AUTH']->getAuth()) {
|
|
|
164 |
|
603 |
florian |
165 |
} else {
|
484 |
alexandre_ |
166 |
$formulaire->addElement('hidden', 'action', 'inscription_v') ;
|
1467 |
alexandre_ |
167 |
$formulaire->setDefaults(array('pays' => 'fr', 'visible' => 1,'lettre'=>1, 'a_lettre' =>1));
|
484 |
alexandre_ |
168 |
}
|
448 |
ddelon |
169 |
}
|
|
|
170 |
|
|
|
171 |
if ($_REQUEST['action'] == 'inscription_v') {
|
1437 |
alexandre_ |
172 |
$formulaire->registerRule('doublonmail', 'callback', 'inscription_verif_doublonMail');
|
|
|
173 |
$formulaire->addRule('email', INS_MAIL_DOUBLE, 'doublonmail');
|
448 |
ddelon |
174 |
if ($formulaire->validate()) {
|
1421 |
alexandre_ |
175 |
if ($GLOBALS['ins_config']['ic_mail_valide_inscription']) {
|
1298 |
neiluj |
176 |
$formulaire->process('inscription_demande', false) ;
|
|
|
177 |
return $res.INS_MESSAGE_INSCRIPTION;
|
|
|
178 |
} else {
|
1421 |
alexandre_ |
179 |
if ($GLOBALS['ins_config']['ic_inscription_modere']) {
|
1467 |
alexandre_ |
180 |
inscription::demandeInscriptionModere($formulaire->getSubmitValues());
|
|
|
181 |
return inscription::getTemplate(INS_TEMPLATE_MESSAGE_INSCRIPTION_MODEREE, $GLOBALS['ins_config']['ic_id_inscription']);
|
1421 |
alexandre_ |
182 |
}
|
1298 |
neiluj |
183 |
$formulaire->process('inscription_validee', false) ;
|
|
|
184 |
$id_utilisateur = $GLOBALS['ins_db']->getOne('SELECT MAX('.INS_CHAMPS_ID.') FROM '.INS_ANNUAIRE) ;
|
|
|
185 |
// Appel des actions des inscriptions des applications clientes
|
|
|
186 |
$d = dir(GEN_CHEMIN_CLIENT);
|
|
|
187 |
while (false !== ($repertoire = $d->read())) {
|
1421 |
alexandre_ |
188 |
if ($repertoire != '.' && $repertoire != '..') {
|
|
|
189 |
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php'))
|
|
|
190 |
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php' ;
|
|
|
191 |
}
|
1298 |
neiluj |
192 |
}
|
|
|
193 |
$d->close();
|
|
|
194 |
return $res.info();
|
|
|
195 |
}
|
|
|
196 |
} else {
|
1437 |
alexandre_ |
197 |
// Si le formulaire n'est pas bon on remet l'action inscription_v
|
1298 |
neiluj |
198 |
$formulaire->addElement('hidden', 'action', 'inscription_v') ;
|
448 |
ddelon |
199 |
}
|
|
|
200 |
}
|
|
|
201 |
if ($_REQUEST['action'] == 'modifier_v') {
|
|
|
202 |
if ($formulaire->validate()) {
|
1298 |
neiluj |
203 |
$formulaire->process('inscription_mise_a_jour', false) ;
|
|
|
204 |
} else {
|
|
|
205 |
return $formulaire->toHTML();
|
448 |
ddelon |
206 |
}
|
1298 |
neiluj |
207 |
return $res.info();
|
448 |
ddelon |
208 |
}
|
|
|
209 |
|
|
|
210 |
return $res.$formulaire->toHTML() ;
|
|
|
211 |
}
|
|
|
212 |
|
603 |
florian |
213 |
//cas de la validation par mail d'une inscription--------------------------------------------------------
|
1467 |
alexandre_ |
214 |
// On a besoin de la globale ins_config,
|
|
|
215 |
// or on ignore quel est l identifiant de l inscription
|
|
|
216 |
// on recupere les donnees serializees a partir de $_GET['id']
|
|
|
217 |
|
|
|
218 |
if (isset($_GET['id'])) {
|
|
|
219 |
$requete = 'SELECT id_donnees FROM inscription_demande WHERE id_identifiant_session="'.$_GET['id'].'"' ;
|
|
|
220 |
$resultat = $GLOBALS['ins_db']->query($requete) ;
|
|
|
221 |
if (DB::isError ($resultat)) {
|
|
|
222 |
return ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
|
|
223 |
}
|
|
|
224 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT) ;
|
|
|
225 |
$donnees = unserialize (stripslashes($ligne->id_donnees)) ;
|
448 |
ddelon |
226 |
|
1467 |
alexandre_ |
227 |
// dans les donnees serialisees, on recupere l identifiant de l inscription
|
|
|
228 |
// pour charger la globale ins_config
|
|
|
229 |
$GLOBALS['ins_config'] = inscription::getConfig($donnees['id_inscription']);
|
|
|
230 |
// Template du formulaire
|
|
|
231 |
$GLOBALS['ins_config']['ic_inscription_template'] = inscription::getTemplate(INS_TEMPLATE_FORMULAIRE,
|
|
|
232 |
$GLOBALS['ins_config']['ic_id_inscription']);
|
1421 |
alexandre_ |
233 |
// si l inscription est modere on place la demande en attente
|
|
|
234 |
// et on envoie un mail au moderateur
|
448 |
ddelon |
235 |
|
1421 |
alexandre_ |
236 |
if ($GLOBALS['ins_config']['ic_inscription_modere']) {
|
|
|
237 |
|
|
|
238 |
$requete_attente = 'insert into inscription_attente select * from inscription_demande where id_identifiant_session="'.
|
|
|
239 |
$_GET['id'].'"';
|
|
|
240 |
$resultat = $GLOBALS['ins_db']->query($requete_attente);
|
|
|
241 |
if (DB::isError ($resultat)) {
|
|
|
242 |
return ("Echec de la requete : $requete<br />".$resultat->getMessage());
|
|
|
243 |
}
|
|
|
244 |
$mails_moderateur = split ('/\n/', $GLOBALS['ins_config']['ic_mail_moderateur']);
|
|
|
245 |
foreach ($mails_moderateur as $mail) {
|
|
|
246 |
mail ($mail, INS_MODERATION_SUJET, INS_NOUVELLE_INSCRIPTION_A_MODERE) ;
|
|
|
247 |
}
|
|
|
248 |
|
|
|
249 |
} else {
|
|
|
250 |
|
|
|
251 |
$id_utilisateur = inscription_insertion($donnees) ;
|
1467 |
alexandre_ |
252 |
$GLOBALS['AUTH']->username = $donnees['a_mail'] ;
|
1421 |
alexandre_ |
253 |
$GLOBALS['AUTH']->password = $donnees['mot_de_passe'] ;
|
|
|
254 |
|
|
|
255 |
// On loggue l'utilisateur
|
|
|
256 |
$GLOBALS['AUTH']->login() ;
|
|
|
257 |
|
1425 |
alexandre_ |
258 |
// inscription a la lettre d'information
|
1421 |
alexandre_ |
259 |
if (isset ($donnees['lettre'])) {
|
|
|
260 |
inscription_lettre($GLOBALS['ins_config']['ic_mail_inscription_news']) ;
|
|
|
261 |
}
|
|
|
262 |
// Appel des actions des inscriptions des applications clientes
|
|
|
263 |
$d = dir(GEN_CHEMIN_CLIENT);
|
|
|
264 |
while (false !== ($repertoire = $d->read())) {
|
|
|
265 |
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php'))
|
|
|
266 |
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php' ;
|
|
|
267 |
}
|
|
|
268 |
$d->close();
|
|
|
269 |
envoie_mail() ;
|
448 |
ddelon |
270 |
}
|
|
|
271 |
// On supprime la demande d'inscription
|
|
|
272 |
$requete = 'delete from inscription_demande where id_identifiant_session="'.$_GET['id'].'"' ;
|
|
|
273 |
$resultat = $GLOBALS['ins_db']->query($requete) ;
|
|
|
274 |
if (DB::isError($resultat)) {
|
1421 |
alexandre_ |
275 |
return ("Echec de la requete : $requete<br />".$resultat->getMessage()) ;
|
448 |
ddelon |
276 |
}
|
1467 |
alexandre_ |
277 |
}
|
448 |
ddelon |
278 |
|
1467 |
alexandre_ |
279 |
|
603 |
florian |
280 |
if ((!$GLOBALS['AUTH']->getAuth())&&($_REQUEST['action']!='inscription')&&($_REQUEST['action']!='inscription_v')) {
|
448 |
ddelon |
281 |
if (isset($_POST['username']) && $_POST['username'] != '') {
|
1298 |
neiluj |
282 |
$res .= '<p class="erreur">'.INS_ERREUR_LOGIN.'</p><br />'."\n".inscription_formulaire_envoi_passe();
|
448 |
ddelon |
283 |
} else {
|
1298 |
neiluj |
284 |
$res .= inscription_AUTH_formulaire_login() ;
|
448 |
ddelon |
285 |
}
|
|
|
286 |
}
|
|
|
287 |
|
1425 |
alexandre_ |
288 |
//cas d'une authentification reussie---------------------------------------------------------------------
|
603 |
florian |
289 |
if ($GLOBALS['AUTH']->getAuth() && ($_REQUEST['action']!='modifier')) {
|
1437 |
alexandre_ |
290 |
// Il faut charger ins_config
|
|
|
291 |
$GLOBALS['ins_config'] = inscription::getConfig($GLOBALS['AUTH']->getAuthData('a_ce_id_inscription'));
|
603 |
florian |
292 |
return info() ;
|
448 |
ddelon |
293 |
}
|
603 |
florian |
294 |
|
448 |
ddelon |
295 |
return $res ;
|
|
|
296 |
}
|
|
|
297 |
|
|
|
298 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
299 |
*
|
|
|
300 |
* $Log: not supported by cvs2svn $
|
1467 |
alexandre_ |
301 |
* Revision 1.26 2007-06-01 15:11:00 alexandre_tb
|
|
|
302 |
* correction de la verification de l email qui ne fonctionnait plus
|
|
|
303 |
*
|
1437 |
alexandre_ |
304 |
* Revision 1.25 2007-06-01 13:37:56 alexandre_tb
|
|
|
305 |
* mise en place de la table inscription_configuration et de la moderation
|
|
|
306 |
*
|
1425 |
alexandre_ |
307 |
* Revision 1.24 2007-05-25 14:31:10 alexandre_tb
|
|
|
308 |
* en cours
|
|
|
309 |
*
|
1421 |
alexandre_ |
310 |
* Revision 1.23 2007/04/11 08:30:12 neiluj
|
|
|
311 |
* remise en état du CVS...
|
|
|
312 |
*
|
1298 |
neiluj |
313 |
* Revision 1.20.2.1 2007/01/26 10:32:59 alexandre_tb
|
|
|
314 |
* suppression d un notice
|
|
|
315 |
*
|
|
|
316 |
* Revision 1.20 2006/12/01 13:23:17 florian
|
|
|
317 |
* integration annuaire backoffice
|
|
|
318 |
*
|
|
|
319 |
* Revision 1.19 2006/10/05 13:53:54 florian
|
|
|
320 |
* amélioration des fichiers sql
|
|
|
321 |
*
|
|
|
322 |
* Revision 1.18 2006/07/20 09:48:07 alexandre_tb
|
|
|
323 |
* réglages
|
|
|
324 |
*
|
|
|
325 |
* Revision 1.17 2006/07/06 10:33:30 alexandre_tb
|
|
|
326 |
* correction bug du à dernière mise à jour
|
|
|
327 |
*
|
|
|
328 |
* Revision 1.16 2006/07/04 09:38:31 alexandre_tb
|
|
|
329 |
* Ajout de la règle doublon email uniquement lors de création d'une entrée
|
|
|
330 |
*
|
|
|
331 |
* Revision 1.15 2006/06/01 10:00:35 alexandre_tb
|
|
|
332 |
* correction bug désinscription des appli cliente
|
|
|
333 |
*
|
|
|
334 |
* Revision 1.14 2006/04/10 09:48:16 alexandre_tb
|
|
|
335 |
* Correction de bug pour les inscriptions aux autres applications
|
|
|
336 |
*
|
|
|
337 |
* Revision 1.13 2006/04/04 12:23:05 florian
|
|
|
338 |
* modifs affichage fiches, généricité de la carto, modification totale de l'appli annuaire
|
|
|
339 |
*
|
|
|
340 |
* Revision 1.12 2006/03/15 11:05:45 alexandre_tb
|
1425 |
alexandre_ |
341 |
* ajout de l'action caché inscription_v lors du ré-affichage du formulaire après erreur de saisie.
|
1298 |
neiluj |
342 |
*
|
|
|
343 |
* Revision 1.11 2006/03/02 14:10:35 alexandre_tb
|
|
|
344 |
* correction du bug desinscription wikini
|
|
|
345 |
*
|
|
|
346 |
* Revision 1.10 2006/03/02 13:03:45 alexandre_tb
|
|
|
347 |
* bug de désinscription interwikini_users
|
|
|
348 |
*
|
|
|
349 |
* Revision 1.9 2006/02/28 14:08:27 alexandre_tb
|
|
|
350 |
* appel des inscriptions des autres appli, sous le format:
|
|
|
351 |
* client/appli/appli.inscription.php
|
|
|
352 |
*
|
|
|
353 |
* Revision 1.8 2006/02/14 10:21:08 alexandre_tb
|
|
|
354 |
* ajout d'un appel à un fichier de classe personnalisé
|
|
|
355 |
*
|
739 |
alexandre_ |
356 |
* Revision 1.7 2005/12/19 13:16:14 alexandre_tb
|
|
|
357 |
* correction d'un bug
|
|
|
358 |
*
|
670 |
alexandre_ |
359 |
* Revision 1.6 2005/11/18 16:04:15 florian
|
|
|
360 |
* corrections de bugs, optimisations, tests pour rendre inscription stable.
|
|
|
361 |
*
|
606 |
florian |
362 |
* Revision 1.5 2005/11/17 18:48:02 florian
|
|
|
363 |
* corrections bugs + amélioration de l'application d'inscription
|
|
|
364 |
*
|
603 |
florian |
365 |
* Revision 1.4 2005/10/25 14:02:21 alexandre_tb
|
|
|
366 |
* le formulaire affiche la france par défaut
|
|
|
367 |
*
|
575 |
alexandre_ |
368 |
* Revision 1.3 2005/09/29 16:07:51 alexandre_tb
|
|
|
369 |
* En cours de production.
|
|
|
370 |
*
|
484 |
alexandre_ |
371 |
* Revision 1.2 2005/09/27 13:59:24 alexandre_tb
|
|
|
372 |
* correction de bogue, généralisation du code etc.
|
|
|
373 |
*
|
471 |
alexandre_ |
374 |
* Revision 1.1 2005/09/22 14:02:49 ddelon
|
|
|
375 |
* nettoyage annuaire et php5
|
|
|
376 |
*
|
448 |
ddelon |
377 |
* Revision 1.4 2005/09/22 13:30:49 florian
|
|
|
378 |
* modifs pour compatibilité XHTML Strict + corrections de bugs (mais ya encore du boulot!!)
|
|
|
379 |
*
|
|
|
380 |
* Revision 1.4 2005/03/21 16:57:30 florian
|
|
|
381 |
* correction de bug, mise à jour interface
|
|
|
382 |
*
|
|
|
383 |
* Revision 1.3 2005/03/08 17:44:02 alex
|
|
|
384 |
* suppression en utilisant removeUser de Auth plutôt qu'en requete directe
|
|
|
385 |
*
|
|
|
386 |
* Revision 1.2 2005/03/02 12:44:41 alex
|
|
|
387 |
* Correction du bug message d'erreur alors qu'on tente de s'inscrire simplement
|
|
|
388 |
*
|
|
|
389 |
* Revision 1.1 2004/12/15 13:32:15 alex
|
|
|
390 |
* version initiale
|
|
|
391 |
*
|
|
|
392 |
* Revision 1.2 2004/09/01 16:36:37 alex
|
|
|
393 |
* changement du chemin pour les include
|
|
|
394 |
*
|
|
|
395 |
* Revision 1.1 2004/07/06 15:42:28 alex
|
|
|
396 |
* en cours
|
|
|
397 |
*
|
|
|
398 |
* Revision 1.5 2004/07/06 15:28:56 alex
|
|
|
399 |
* en cours
|
|
|
400 |
*
|
|
|
401 |
* Revision 1.4 2004/06/25 14:26:03 alex
|
|
|
402 |
* modification de la suppression
|
|
|
403 |
*
|
|
|
404 |
* Revision 1.3 2004/06/23 12:41:44 alex
|
|
|
405 |
* amélioration de la gestion de la perte de mot de passe
|
|
|
406 |
*
|
|
|
407 |
* Revision 1.2 2004/06/18 09:18:23 alex
|
|
|
408 |
* version initiale
|
|
|
409 |
*
|
|
|
410 |
*
|
|
|
411 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
412 |
*/
|
|
|
413 |
?>
|