egroupware_official/logout.php

69 lines
2.6 KiB
PHP
Raw Normal View History

2000-08-18 05:24:22 +02:00
<?php
2001-03-31 13:43:14 +02:00
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$egw_info = array();
$GLOBALS['egw_info']['flags'] = array(
2004-01-10 15:48:09 +01:00
'disable_Template_class' => True,
2001-03-31 13:43:14 +02:00
'currentapp' => 'logout',
'noheader' => True,
'nofooter' => True,
'nonavbar' => True
);
include('./header.inc.php');
$GLOBALS['sessionid'] = get_var('sessionid',array('GET','COOKIE'));
$GLOBALS['kp3'] = get_var('kp3',array('GET','COOKIE'));
$verified = $GLOBALS['egw']->session->verify();
if ($verified)
2001-03-31 13:43:14 +02:00
{
if (file_exists($GLOBALS['egw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']))
2001-03-31 13:43:14 +02:00
{
$dh = opendir($GLOBALS['egw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']);
while ($file = readdir($dh))
2001-03-31 13:43:14 +02:00
{
if ($file != '.' && $file != '..')
2001-03-31 13:43:14 +02:00
{
unlink($GLOBALS['egw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid'] . SEP . $file);
2001-03-31 13:43:14 +02:00
}
}
closedir($dh);
rmdir($GLOBALS['egw_info']['server']['temp_dir'] . SEP . $GLOBALS['sessionid']);
2001-03-31 13:43:14 +02:00
}
$GLOBALS['egw']->hooks->process('logout');
$GLOBALS['egw']->session->destroy($GLOBALS['sessionid'],$GLOBALS['kp3']);
2001-03-31 13:43:14 +02:00
}
2001-08-05 11:19:08 +02:00
else
{
if(is_object($GLOBALS['egw']->log))
2001-12-12 17:09:41 +01:00
{
$GLOBALS['egw']->log->write(array(
2001-12-12 17:09:41 +01:00
'text' => 'W-VerifySession, could not verify session during logout',
'line' => __LINE__,
'file' => __FILE__
));
}
2001-08-05 11:19:08 +02:00
}
$GLOBALS['egw']->session->phpgw_setcookie('eGW_remember');
$GLOBALS['egw']->session->phpgw_setcookie('sessionid');
$GLOBALS['egw']->session->phpgw_setcookie('kp3');
$GLOBALS['egw']->session->phpgw_setcookie('domain');
if(substr($GLOBALS['egw_info']['server']['sessions_type'],0,4) == 'php4')
2002-03-04 01:59:29 +01:00
{
$GLOBALS['egw']->session->phpgw_setcookie(EGW_PHPSESSID);
2002-03-04 01:59:29 +01:00
}
2001-03-31 13:43:14 +02:00
2005-10-09 14:02:24 +02:00
$GLOBALS['egw']->redirect($GLOBALS['egw_info']['server']['webserver_url'].'/login.php?cd=1&domain='.$GLOBALS['egw_info']['user']['domain']);
2001-12-12 17:09:41 +01:00
?>