phpldapadmin/logout.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 09:25:54 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/logout.php,v 1.15 2005/04/15 13:16:59 wurley Exp $
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
/**
* For servers whose auth_type is set to 'cookie' or 'session'. Pass me
2009-06-30 09:22:30 +00:00
* the server_id and I will log out the user (delete the cookie)
*
* Variables that come in as GET vars:
* - server_id
2009-06-30 09:24:29 +00:00
*
* @package phpLDAPadmin
*/
/**
2009-06-30 09:22:30 +00:00
*/
require realpath( 'common.php' );
2009-06-30 09:24:29 +00:00
$server_id = (isset($_GET['server_id']) ? $_GET['server_id'] : '');
$ldapserver = new LDAPServer ($server_id);
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
if( ! $ldapserver->haveAuthInfo())
pla_error( $lang['no_one_logged_in'] );
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
if( in_array($ldapserver->auth_type, array('cookie','session')) ) {
2009-06-30 09:25:54 +00:00
syslog_notice ( "Logout for " . get_logged_in_dn( $ldapserver ) );
2009-06-30 09:24:29 +00:00
unset_login_dn( $ldapserver ) or pla_error( $lang['could_not_logout'] );
unset_lastactivity( $ldapserver );
} else
pla_error( sprintf( $lang['unknown_auth_type'], htmlspecialchars( $ldapserver->auth_type ) ) );
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
include realpath( 'header.php' );
2009-06-30 09:22:30 +00:00
?>
<script language="javascript">
parent.left_frame.location.reload();
</script>
<center>
<br />
<br />
<?php echo sprintf( $lang['logged_out_successfully'], htmlspecialchars($servers[$server_id]['name']) ); ?><br />
</center>
</body>
</html>