Added basic framework for plugin support. Very little code so far. Two
[squirrelmail.git] / src / signout.php
index ae78e121efd3d932845d9953b6ae415ac995dc56..2219f6af87ecc1549713bfee6af3fb316c662c08 100644 (file)
@@ -1,59 +1,76 @@
-<?
+<?php
+   session_start();
+
        /**
         **  signout.php
         **
         **  Clears the cookie, and logs them out.
         **
         **/
-       
-       $username = "";
-       $key = "";
-       $logged_in = 0;
-
-        // $squirrelmail_language is set by a cookie when the user
-        // selects language
-        if (isset($squirrelmail_language)) {
-           if ($squirrelmail_language != "en") {
-              putenv("LANG=".$squirrelmail_language);
-              bindtextdomain("squirrelmail", "../locale/");
-              textdomain("squirrelmail");
-           }
-        }
-       
-       setcookie("username", "", time(), "/");
-       setcookie("key", "", time(), "/");
-       setcookie("logged_in", 0, time(), "/");
+
+   include ("../src/load_prefs.php");
+
+   if (!isset($i18n_php))
+      include("../functions/i18n.php");
+   if (!isset($prefs_php))
+      include ("../functions/prefs.php");
+
+   // Quick Fix for Gettext in LogOut Screen
+   if (!function_exists("_")) {
+      function _($string) {
+         return $string;
+      }
+   }
+
+   $squirrelmail_language = getPref ($data_dir, $username, "language");
+   if (isset($squirrelmail_language)) {
+      if ($squirrelmail_language != "en" && $squirrelmail_language != "") {
+         putenv("LC_ALL=".$squirrelmail_language);
+         bindtextdomain("squirrelmail", "../locale/");
+         textdomain("squirrelmail");
+         header ("Content-Type: text/html; charset=".$languages[$squirrelmail_language]["CHARSET"]);
+
+         // Setting cookie to use on the login screen the next time the
+         // same user logs in.
+         setcookie("squirrelmail_language", $squirrelmail_language, 
+                   time()+2592000);
+
+      }
+   }
+
+   setcookie("username", "", time(), "/");
+   setcookie("key", "", time(), "/");
+   setcookie("logged_in", 0, time(), "/");
+   session_destroy();
 ?>
 <HTML>
-<?
-   echo "<BODY TEXT=000000 BGCOLOR=FFFFFF LINK=0000CC VLINK=0000CC ALINK=0000CC>\n";
+<?php
+   echo "<BODY TEXT=000000 BGCOLOR=$color[4] LINK=$color[7] VLINK=$color[7] ALINK=$color[7]>\n";
    echo "<BR><BR><TABLE BGCOLOR=FFFFFF BORDER=0 COLS=1 WIDTH=50% CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>";
-   echo "   <TR BGCOLOR=DCDCDC WIDTH=100%>";
+   echo "   <TR BGCOLOR=$color[0] WIDTH=100%>";
    echo "      <TD ALIGN=CENTER>";
-   echo "         <FONT FACE=\"Arial,Helvetica\"><B>";
+   echo "         <B>";
    echo _("Sign Out");
-   echo "</B></FONT>";
+   echo "</B>";
    echo "      </TD>";
    echo "   </TR>";
-   echo "   <TR BGCOLOR=FFFFFF WIDTH=100%>";
+   echo "   <TR BGCOLOR=$color[4] WIDTH=100%>";
    echo "      <TD ALIGN=CENTER>";
-   echo "         <FONT FACE=\"Arial,Helvetica\"><BR>";
+   echo "         <BR>";
    echo _("You have been successfully signed out.");
-   echo "<BR></FONT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo _("Click here to ");
+   echo "<BR>";
    echo "<A HREF=\"login.php\" TARGET=_top>";
-   echo _("log back in.");
-   echo "</A></FONT><BR><BR>";
+   echo _("Click here to log back in.");
+   echo "</A><BR><BR>";
    echo "      </TD>";
    echo "   </TR>";
-   echo "   <TR BGCOLOR=DCDCDC WIDTH=100%>";
+   echo "   <TR BGCOLOR=$color[0] WIDTH=100%>";
    echo "      <TD ALIGN=CENTER>";
-   echo "         <FONT FACE=\"Arial,Helvetica\"><BR></FONT>";
+       echo "                  <br>";
    echo "      </TD>";
    echo "   </TR>";
    echo "</TABLE>";
+       echo "<br><br>";
 ?>
 </BODY>
 </HTML>
-