function ldap_sso_user_logout in LDAP Single Sign On 7
Same name and namespace in other branches
- 8.4 ldap_sso.module \ldap_sso_user_logout()
- 8 ldap_sso.module \ldap_sso_user_logout()
- 7.2 ldap_sso.module \ldap_sso_user_logout()
Implements hook_user_logout().
The user just logged out.
File
- ./
ldap_sso.module, line 32 - This module injects itself into Drupal's Authentication stack.
Code
function ldap_sso_user_logout($account) {
$auth_conf = ldap_authentication_get_valid_conf();
if ($auth_conf->seamlessLogin == 1) {
$cookie_string = 'do not auto login';
setcookie("seamless_login", $cookie_string, time() + (int) $auth_conf->cookieExpire, base_path(), "");
$_SESSION['seamless_login'] = $cookie_string;
}
}