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: inscription.php,v 1.9 2006-02-28 14:08:27 alexandre_tb Exp $
|
22 |
// CVS : $Id: inscription.php,v 1.10 2006-03-02 13:03:45 alexandre_tb Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Inscription
|
24 |
* Inscription
|
25 |
*
|
25 |
*
|
26 |
* Un module d'inscription, en général ce code est spécifique à
|
26 |
* Un module d'inscription, en général ce code est spécifique à
|
27 |
* un site web
|
27 |
* un site web
|
Line 30... |
Line 30... |
30 |
//Auteur original :
|
30 |
//Auteur original :
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
31 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
32 |
//Autres auteurs :
|
32 |
//Autres auteurs :
|
33 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
33 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
34 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@copyright Tela-Botanica 2000-2004
|
35 |
*@version $Revision: 1.9 $ $Date: 2006-02-28 14:08:27 $
|
35 |
*@version $Revision: 1.10 $ $Date: 2006-03-02 13:03:45 $
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
// +------------------------------------------------------------------------------------------------------+
|
37 |
*/
|
37 |
*/
|
Line 38... |
Line 38... |
38 |
|
38 |
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
// +------------------------------------------------------------------------------------------------------+
|
Line 79... |
Line 79... |
79 |
if (INS_UTILISE_SPIP) {
|
79 |
if (INS_UTILISE_SPIP) {
|
80 |
desinscription_spip($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID)) ;
|
80 |
desinscription_spip($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID)) ;
|
81 |
}
|
81 |
}
|
82 |
// Suppression dans Wikini
|
82 |
// Suppression dans Wikini
|
83 |
if (INS_UTILISE_WIKINI) {
|
83 |
if (INS_UTILISE_WIKINI) {
|
84 |
$nom_wiki = $GLOBALS['AUTH']->getAuthData(INS_NOM_WIKI) ;
|
84 |
$nom_wiki = $GLOBALS['AUTH']->getAuthData(INS_CHAMPS_NOM_WIKI) ;
|
85 |
desinscription_interwikini_users($nom_wiki) ;
|
85 |
desinscription_interwikini_users($nom_wiki) ;
|
86 |
}
|
86 |
}
|
87 |
// Appel des actions desinscriptions des applications clientes
|
87 |
// Appel des actions desinscriptions des applications clientes
|
88 |
$d = dir(GEN_CHEMIN_CLIENT);
|
88 |
$d = dir(GEN_CHEMIN_CLIENT);
|
89 |
while (false !== ($repertoire = $d->read())) {
|
89 |
while (false !== ($repertoire = $d->read())) {
|
Line 210... |
Line 210... |
210 |
}
|
210 |
}
|
Line 211... |
Line 211... |
211 |
|
211 |
|
212 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
212 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
213 |
*
|
213 |
*
|
- |
|
214 |
* $Log: not supported by cvs2svn $
|
- |
|
215 |
* Revision 1.9 2006/02/28 14:08:27 alexandre_tb
|
- |
|
216 |
* appel des inscriptions des autres appli, sous le format:
|
- |
|
217 |
* client/appli/appli.inscription.php
|
214 |
* $Log: not supported by cvs2svn $
|
218 |
*
|
215 |
* Revision 1.8 2006/02/14 10:21:08 alexandre_tb
|
219 |
* Revision 1.8 2006/02/14 10:21:08 alexandre_tb
|
216 |
* ajout d'un appel à un fichier de classe personnalisé
|
220 |
* ajout d'un appel à un fichier de classe personnalisé
|
217 |
*
|
221 |
*
|
218 |
* Revision 1.7 2005/12/19 13:16:14 alexandre_tb
|
222 |
* Revision 1.7 2005/12/19 13:16:14 alexandre_tb
|