Line 65... |
Line 65... |
65 |
<label for="username">Courriel : </label>
|
65 |
<label for="username">Courriel : </label>
|
66 |
<input type="text" size="12" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
66 |
<input type="text" size="12" id="username" name="username" maxlength="80" tabindex="1" value="courriel" />
|
67 |
<label for="password">Mot de passe : </label>
|
67 |
<label for="password">Mot de passe : </label>
|
68 |
<input type="password" size="12" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
68 |
<input type="password" size="12" id="password" name="password" maxlength="80" tabindex="2" value="mot de passe" />
|
69 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
69 |
<input type="submit" id="connexion" name="connexion" tabindex="3" value="ok" />
|
70 |
<p><a id="lien_inscription" href="/inscription">S\'inscrire...</a></p>
|
70 |
<p><a id="lien_inscription" href="/page:inscription">S\'inscrire...</a></p>
|
71 |
</fieldset>
|
71 |
</fieldset>
|
72 |
</form>' ;
|
72 |
</form>' ;
|
73 |
return $res;
|
73 |
return $res;
|
74 |
}
|
74 |
}
|
Line 84... |
Line 84... |
84 |
//session_name('gen_annuaire_tela');
|
84 |
//session_name('gen_annuaire_tela');
|
85 |
//$GLOBALS['identification']->_sessionName = 'gen_annuaire_tela';
|
85 |
//$GLOBALS['identification']->_sessionName = 'gen_annuaire_tela';
|
86 |
// ATTENTION : TODO : setSessionname ne marche pas ici. Le nom de la session n'est jamais initialisé est reste PHPSESSID
|
86 |
// ATTENTION : TODO : setSessionname ne marche pas ici. Le nom de la session n'est jamais initialisé est reste PHPSESSID
|
87 |
$GLOBALS['identification']->setSessionname('gen_annuaire_tela');
|
87 |
$GLOBALS['identification']->setSessionname('gen_annuaire_tela');
|
88 |
//echo session_name().'-'.$GLOBALS['identification']->_sessionName;
|
88 |
//echo session_name().'-'.$GLOBALS['identification']->_sessionName;
|
89 |
//echo '<pre>'.print_r($GLOBALS['identification'], true).'</pre>';
|
- |
|
90 |
$GLOBALS['identification']->setExpire((int)PAP_AUTH_SESSION_DUREE);
|
- |
|
91 |
// On débute une session
|
89 |
// On débute une session
|
92 |
$GLOBALS['identification']->start();
|
90 |
$GLOBALS['identification']->start();
|
93 |
// Pour que la session dure même après avoir refermer son navigateur
|
- |
|
94 |
//setcookie(session_name(), session_id(), (int)PAP_AUTH_SESSION_DUREE, '/');
|
- |
|
Line 95... |
Line 91... |
95 |
|
91 |
|
96 |
// On teste si la variable logout existe, si oui, on deconnecte
|
92 |
// On teste si la variable logout existe, si oui, on deconnecte
|
- |
|
93 |
if (isset($logout) && $logout != '') {
|
- |
|
94 |
// On place les cookies avec une durée dépassée
|
- |
|
95 |
setcookie('spip_session', '', time() - 3600, '/actu/') ;
|
97 |
if (isset($logout) && $logout != '') {
|
96 |
setcookie('spip_admin', '', time() - 3600, '/actu/') ;
|
98 |
$GLOBALS['identification']->logout();
|
97 |
$GLOBALS['identification']->logout();
|
Line 99... |
Line 98... |
99 |
}
|
98 |
}
|