Spanish Update
[squirrelmail.git] / src / signout.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * signout.php -- cleans up session and logs the user out
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Cleans up after the user. Resets cookies and terminates session.
10 *
11 * $Id$
12 */
8b522a59 13
86725763 14/* Path for SquirrelMail required files. */
15define('SM_PATH','../');
16
17/* SquirrelMail required files. */
08185f2a 18require_once(SM_PATH . 'include/validate.php');
86725763 19require_once(SM_PATH . 'functions/prefs.php');
20require_once(SM_PATH . 'functions/plugin.php');
21require_once(SM_PATH . 'functions/strings.php');
22require_once(SM_PATH . 'functions/html.php');
f740c049 23
32f4e318 24/* Erase any lingering attachments */
fb745cc7 25if (isset($attachments) && is_array($attachments)
26 && sizeof($attachments)){
27 $hashed_attachment_dir = getHashedDir($username, $attachment_dir);
28 foreach ($attachments as $info) {
29 $attached_file = "$hashed_attachment_dir/$info[localfilename]";
30 if (file_exists($attached_file)) {
31 unlink($attached_file);
32 }
32f4e318 33 }
34}
288491a4 35
32f4e318 36if (!isset($frame_top)) {
fb745cc7 37 $frame_top = '_top';
32f4e318 38}
d03f3582 39
32f4e318 40/* If a user hits reload on the last page, $base_uri isn't set
41 * because it was deleted with the session. */
85b454a0 42if (!isset($base_uri)) {
f3bc099d 43 if (!function_exists('sqm_baseuri')){
86725763 44 require_once(SM_PATH . 'functions/display_messages.php');
f3bc099d 45 }
46 $base_uri = sqm_baseuri();
32f4e318 47}
ceac7a2f 48
32f4e318 49do_hook('logout');
50setcookie('username', '', 0, $base_uri);
51setcookie('key', '', 0, $base_uri);
52session_destroy();
f923b93d 53
32f4e318 54if ($signout_page) {
55 header('Status: 303 See Other');
56 header("Location: $signout_page");
57 exit; /* we send no content if we're redirecting. */
58}
21c3249f 59?>
fab3baa6 60<html>
61 <head>
59177427 62<?php
32f4e318 63 if ($theme_css != '') {
8c65f339 64?>
fab3baa6 65<link rel="stylesheet" type="text/css" href="<?php echo $theme_css ?>">
8c65f339 66<?php
32f4e318 67 }
21c3249f 68?>
fab3baa6 69<title><?php echo $org_title ?> - Signout</title>
70</head>
71<body text="<?php echo $color[8] ?>" bgcolor="<?php echo $color[4] ?>"
72link="<?php echo $color[7] ?>" vlink="<?php echo $color[7] ?>"
73alink="<?php echo $color[7] ?>">
74<br><br>
75<?
76do_hook('logout_above_text');
77echo
78html_tag( 'table',
79 html_tag( 'tr',
ca52e31b 80 html_tag( 'th', _("Sign Out"), 'center' ) ,
fab3baa6 81 '', $color[0], 'width="100%"' ) .
82 html_tag( 'tr',
83 html_tag( 'td', _("You have been successfully signed out.") .
4a6bbb49 84 '<br><a href="login.php" target="' . $frame_top . '">' .
ca52e31b 85 _("Click here to log back in.") . '</a><br>' ,
fab3baa6 86 'center' ) ,
87 '', $color[4], 'width="100%"' ) .
88 html_tag( 'tr',
89 html_tag( 'td', '<br>', 'center' ) ,
90 '', $color[0], 'width="100%"' ) ,
91'center', $color[4], 'width="50%" cols="1" cellpadding="2" cellspacing="0" border="0"' )
92?>
93</body>
86725763 94</html>