Added basic framework for plugin support. Very little code so far. Two
[squirrelmail.git] / src / signout.php
index e7e6f20a0dfad9ffb32d634eaed2fd870c9505cc..2219f6af87ecc1549713bfee6af3fb316c662c08 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    session_start();
 
        /**
@@ -7,56 +7,70 @@
         **  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";
-   echo "<BR><BR><TABLE BGCOLOR=#FFFFFF BORDER=0 COLS=1 WIDTH=50% CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>";
-   echo "   <TR BGCOLOR=#DCDCDC WIDTH=100%>";
+<?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=$color[0] WIDTH=100%>";
    echo "      <TD ALIGN=CENTER>";
    echo "         <B>";
    echo _("Sign Out");
    echo "</B>";
    echo "      </TD>";
    echo "   </TR>";
-   echo "   <TR BGCOLOR=#FFFFFF WIDTH=100%>";
+   echo "   <TR BGCOLOR=$color[4] WIDTH=100%>";
    echo "      <TD ALIGN=CENTER>";
    echo "         <BR>";
    echo _("You have been successfully signed out.");
    echo "<BR>";
-   echo _("Click here to ");
    echo "<A HREF=\"login.php\" TARGET=_top>";
-   echo _("log back in.");
+   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 "         <BR>";
+       echo "                  <br>";
    echo "      </TD>";
    echo "   </TR>";
    echo "</TABLE>";
+       echo "<br><br>";
 ?>
 </BODY>
 </HTML>
-<?
-   session_destroy();
-?>