16841d63cfcfcea795b6e9ed0b7a611327465f09
[squirrelmail.git] / src / signout.php
1 <?php
2
3 /**
4 * signout.php -- cleans up session and logs the user out
5 *
6 * Cleans up after the user. Resets cookies and terminates session.
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
13
14 /**
15 * Include the SquirrelMail initialization file.
16 */
17 require('../include/init.php');
18
19 /* Erase any lingering attachments */
20 sqgetGlobalVar('compose_messages', $compose_messages, SQ_SESSION);
21
22 if (!empty($compose_message) && is_array($compose_messages)) {
23 foreach($compose_messages as $composeMessage) {
24 $composeMessage->purgeAttachments();
25 }
26 }
27
28 if (!isset($frame_top)) {
29 $frame_top = '_top';
30 }
31
32 /* If a user hits reload on the last page, $base_uri isn't set
33 * because it was deleted with the session. */
34 if (! sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION) ) {
35 $base_uri = sqm_baseuri();
36 }
37
38 $login_uri = 'login.php';
39
40 $hook_results = do_hook('logout', $login_uri);
41 if (!empty($hook_results[1])) $login_uri = $hook_results[1];
42
43 sqsession_destroy();
44
45 if ($signout_page) {
46 // Status 303 header is disabled. PHP fastcgi bug. See 1.91 changelog.
47 //header('Status: 303 See Other');
48 header("Location: $signout_page");
49 exit; /* we send no content if we're redirecting. */
50 }
51
52 /* After a reload of signout.php, $oTemplate might not exist anymore.
53 * Recover, so that we don't get all kinds of errors in that situation. */
54 if ( !isset($oTemplate) || !is_object($oTemplate) ) {
55 require_once(SM_PATH . 'class/template/Template.class.php');
56 $sTemplateID = Template::get_default_template_set();
57 $icon_theme_path = !$use_icons ? NULL : Template::calculate_template_images_directory($sTemplateID);
58 $oTemplate = Template::construct_template($sTemplateID);
59
60 // We want some variables to always be available to the template
61 $always_include = array('sTemplateID', 'icon_theme_path', 'javascript_on');
62 foreach ($always_include as $var) {
63 $oTemplate->assign($var, (isset($$var) ? $$var : NULL));
64 }
65 }
66
67 // The error handler object is probably also not initialized on a refresh
68 $oErrorHandler = new ErrorHandler($oTemplate,'error_message.tpl');
69
70 /* internal gettext functions will fail, if language is not set */
71 set_up_language($squirrelmail_language, true, true);
72
73 displayHtmlHeader($org_title . ' - ' . _("Signout"));
74
75 $oTemplate->assign('frame_top', $frame_top);
76 $oTemplate->assign('login_uri', $login_uri);
77
78 $oTemplate->display('signout.tpl');
79
80 $oTemplate->display('footer.tpl');
81