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: identification.php,v 1.25 2006-11-20 18:40:33 jp_milcent Exp $
|
22 |
// CVS : $Id: identification.php,v 1.25.2.1 2006-12-08 18:17:06 jp_milcent Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Applette : identification
|
24 |
* Applette : identification
|
25 |
*
|
25 |
*
|
26 |
* Génère un formulaire les champs nécessaires pour s'identifier.
|
26 |
* Génère un formulaire les champs nécessaires pour s'identifier.
|
27 |
* Nécessite :
|
27 |
* Nécessite :
|
Line 36... |
Line 36... |
36 |
//Auteur original :
|
36 |
//Auteur original :
|
37 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
37 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
38 |
//Autres auteurs :
|
38 |
//Autres auteurs :
|
39 |
*@author Aucun
|
39 |
*@author Aucun
|
40 |
*@copyright Tela-Botanica 2000-2004
|
40 |
*@copyright Tela-Botanica 2000-2004
|
41 |
*@version $Revision: 1.25 $ $Date: 2006-11-20 18:40:33 $
|
41 |
*@version $Revision: 1.25.2.1 $ $Date: 2006-12-08 18:17:06 $
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
42 |
// +------------------------------------------------------------------------------------------------------+
|
43 |
*/
|
43 |
*/
|
Line 44... |
Line 44... |
44 |
|
44 |
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
45 |
// +------------------------------------------------------------------------------------------------------+
|
Line 80... |
Line 80... |
80 |
$GLOBALS['_GEN_commun']['pear_auth']->setExpire((int)IDEN_AUTH_SESSION_DUREE);
|
80 |
$GLOBALS['_GEN_commun']['pear_auth']->setExpire((int)IDEN_AUTH_SESSION_DUREE);
|
81 |
// Pour que la session dure même après avoir refermer son navigateur
|
81 |
// Pour que la session dure même après avoir refermer son navigateur
|
82 |
setcookie(session_name(), session_id(), (int)IDEN_AUTH_SESSION_DUREE, '/');
|
82 |
setcookie(session_name(), session_id(), (int)IDEN_AUTH_SESSION_DUREE, '/');
|
83 |
}
|
83 |
}
|
84 |
$GLOBALS['_GEN_commun']['pear_auth']->login();
|
84 |
$GLOBALS['_GEN_commun']['pear_auth']->login();
|
85 |
$_SESSION['username'] = $username;
|
85 |
$_SESSION['username'] = $_POST['username'];
|
86 |
}
|
86 |
}
|
- |
|
87 |
// Si un cookie existe, nous loggons l'utilisateur.
|
- |
|
88 |
if (isset($_COOKIE[session_name()])) {
|
- |
|
89 |
$GLOBALS['_GEN_commun']['pear_auth']->login();
|
- |
|
90 |
}
|
87 |
}
|
91 |
}
|
Line 88... |
Line 92... |
88 |
|
92 |
|
89 |
// +------------------------------------------------------------------------------------------------------+
|
93 |
// +------------------------------------------------------------------------------------------------------+
|
90 |
// | LISTE de FONCTIONS |
|
94 |
// | LISTE de FONCTIONS |
|
Line 214... |
Line 218... |
214 |
|
218 |
|
215 |
|
219 |
|
216 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
220 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
221 |
*
|
- |
|
222 |
* $Log: not supported by cvs2svn $
|
- |
|
223 |
* Revision 1.25 2006/11/20 18:40:33 jp_milcent
|
- |
|
224 |
* Amélioration de la gestion des infos sur l'inscription.
|
217 |
*
|
225 |
* Ajout du paramêtre url_inscription_aide permettant d'indiquer l'url vers une page d'aide sur l'inscription.
|
218 |
* $Log: not supported by cvs2svn $
|
226 |
*
|
219 |
* Revision 1.24 2006/11/20 17:42:40 jp_milcent
|
227 |
* Revision 1.24 2006/11/20 17:42:40 jp_milcent
|
220 |
* Ajout d'un test activant ou pas la mémorisation de l'identification.
|
228 |
* Ajout d'un test activant ou pas la mémorisation de l'identification.
|
221 |
*
|
229 |
*
|