missing ';'
[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 * Path for SquirrelMail required files.
16 * @ignore
17 */
18 define('SM_PATH','../');
19
20 include_once(SM_PATH . 'include/validate.php');
21 require_once(SM_PATH . 'functions/prefs.php');
22 require_once(SM_PATH . 'functions/plugin.php');
23 require_once(SM_PATH . 'functions/strings.php');
24 require_once(SM_PATH . 'functions/html.php');
25
26 /* Erase any lingering attachments */
27 sqgetGlobalVar('compose_messages', $compose_messages, SQ_SESSION);
28
29 if (!empty($compose_message) && is_array($compose_messages)) {
30 foreach($compose_messages as $composeMessage) {
31 $composeMessage->purgeAttachments();
32 }
33 }
34
35 if (!isset($frame_top)) {
36 $frame_top = '_top';
37 }
38
39 /* If a user hits reload on the last page, $base_uri isn't set
40 * because it was deleted with the session. */
41 if (! sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION) ) {
42 require_once(SM_PATH . 'functions/display_messages.php');
43 $base_uri = sqm_baseuri();
44 }
45
46 do_hook('logout');
47
48 sqsession_destroy();
49
50 if ($signout_page) {
51 header('Status: 303 See Other');
52 header("Location: $signout_page");
53 exit; /* we send no content if we're redirecting. */
54 }
55
56 /* internal gettext functions will fail, if language is not set */
57 set_up_language($squirrelmail_language, true, true);
58 ?>
59 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
60 <html>
61 <head>
62 <?php
63 if ($theme_css != '') {
64 ?>
65 <link rel="stylesheet" type="text/css" href="<?php echo $theme_css; ?>" />
66 <?php
67 }
68 ?>
69 <meta name="robots" content="noindex,nofollow">
70 <title><?php echo $org_title . ' - ' . _("Signout"); ?></title>
71 </head>
72 <body text="<?php echo $color[8]; ?>" bgcolor="<?php echo $color[4]; ?>"
73 link="<?php echo $color[7]; ?>" vlink="<?php echo $color[7]; ?>"
74 alink="<?php echo $color[7]; ?>">
75 <br /><br />
76 <?php
77 $plugin_message = concat_hook_function('logout_above_text');
78 echo
79 html_tag( 'table',
80 html_tag( 'tr',
81 html_tag( 'th', _("Sign Out"), 'center' ) ,
82 '', $color[0] ) .
83 $plugin_message .
84 html_tag( 'tr',
85 html_tag( 'td', _("You have been successfully signed out.") .
86 '<br /><a href="login.php" target="' . $frame_top . '">' .
87 _("Click here to log back in.") . '</a><br />' ,
88 'center' ) ,
89 '', $color[4] ) .
90 html_tag( 'tr',
91 html_tag( 'td', '<br />', 'center' ) ,
92 '', $color[0] ) ,
93 'center', $color[4], 'width="50%" cellpadding="2" cellspacing="0" border="0"' );
94
95 $oTemplate->display('footer.tpl');
96 ?>