phase 1 of interface improvements -- alternating row colors (needs some work)
[squirrelmail.git] / src / options.php
index 914e1e628f3caea0c90027ac1a548db204194e6b..71b0e3ea6c34cf5aa573fecf8b95644bc17af4f0 100644 (file)
-<?
-   if (!isset($config_php))
-      include("../config/config.php");
+<?php
+   /**
+    **  options.php
+    **
+    **  Copyright (c) 1999-2000 The SquirrelMail development team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
+    **
+    **  Displays the options page. Pulls from proper user preference files
+    **  and config.php. Displays preferences as selected and other options.
+    **
+    **  $Id$
+    **/
+
+   session_start();
+
    if (!isset($strings_php))
-      include("../functions/strings.php");
+      include('../functions/strings.php');
+   if (!isset($config_php))
+      include('../config/config.php');
    if (!isset($page_header_php))
-      include("../functions/page_header.php");
+      include('../functions/page_header.php');
    if (!isset($display_messages_php))
-      include("../functions/display_messages.php");
+      include('../functions/display_messages.php');
    if (!isset($imap_php))
-      include("../functions/imap.php");
+      include('../functions/imap.php');
    if (!isset($array_php))
-      include("../functions/array.php");
+      include('../functions/array.php');
    if (!isset($i18n_php))
-      include("../functions/i18n.php");
-
-   include("../src/load_prefs.php");
-
-
-   $imapConnection = sqimap_login($username, $key, $imapServerAddress);
-   $boxes = sqimap_mailbox_list($imapConnection, $boxes);
-   fputs($imapConnection, "1 logout\n");
-
-   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
-   displayPageHeader($color, "None");
-
-   /** load up some of the values from the pref file **/
-   $fullname = getPref($data_dir, $username, "full_name");
-   $replyto = getPref($data_dir, $username, "reply_to");
-   $email_address  = getPref($data_dir, $username, "email_address");
-   $chosen_language = getPref($data_dir, $username, "language");
-
-   echo "<TABLE WIDTH=100% COLS=1 ALIGN=CENTER>\n";
-   echo "   <TR><TD BGCOLOR=\"$color[0]\" ALIGN=CENTER>\n";
-   echo "      <FONT FACE=\"Arial,Helvetica\">";
-   echo _("Options");
-   echo "</FONT>\n";
-   echo "   </TD></TR>\n";
-   echo "</TABLE>\n";
-
-   echo "<FORM action=\"options_submit.php\" METHOD=POST>\n";
-   echo "<TABLE WIDTH=100% COLS=2 ALIGN=CENTER>\n";
-   // FULL NAME
-   echo "   <TR>";
-   echo "      <TD WIDTH=20% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Full Name:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=80% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo "         <INPUT TYPE=TEXT NAME=full_name VALUE=\"$fullname\" SIZE=50><BR>";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-   // FROM-ADDRESS
-   echo "   <TR>";
-   echo "      <TD WIDTH=20% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("E-mail address:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=80% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo "         <INPUT TYPE=TEXT NAME=email_address VALUE=\"$email_address\" SIZE=50><BR>";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-   // REPLY-TO
-   echo "   <TR>";
-   echo "      <TD WIDTH=20% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Reply-to:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=80% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo "         <INPUT TYPE=TEXT NAME=reply_to VALUE=\"$replyto\" SIZE=50><BR>";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-   // THEME
-   echo "   <TR>";
-   echo "      <TD WIDTH=20% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Theme:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=80% ALIGN=LEFT>";
-
-   echo "         <TT><SELECT NAME=chosentheme>\n";
-   for ($i = 0; $i < count($theme); $i++) {
-      if ($theme[$i]["PATH"] == $chosen_theme)
-         echo "         <OPTION SELECTED VALUE=\"".$theme[$i]["PATH"]."\">".$theme[$i]["NAME"]."\n";
-      else
-         echo "         <OPTION VALUE=\"".$theme[$i]["PATH"]."\">".$theme[$i]["NAME"]."\n";
-   }
-   echo "         </SELECT></TT>";
-   echo "      </TD>";
-   echo "   </TR>";
-   // LANGUAGE
-   echo "   <TR>";
-   echo "      <TD WIDTH=20% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Language:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=80% ALIGN=LEFT>";
+      include('../functions/i18n.php');
+   if (!isset($auth_php))
+      include ('../functions/auth.php'); 
+
+   if (isset($language)) {
+      setcookie('squirrelmail_language', $language, time()+2592000);
+      $squirrelmail_language = $language;
+   }   
+
+   include('../src/load_prefs.php');
+   displayPageHeader($color, 'None');
+   is_logged_in(); 
+?>
 
-   echo "         <TT><SELECT NAME=language>\n";
-   for ($i = 0; $i < count($languages); $i++) {
-      if ($languages[$i]["CODE"] == $chosen_language)
-         echo "         <OPTION SELECTED VALUE=\"".$languages[$i]["CODE"]."\">".$languages[$i]["NAME"]."\n";
-      else
-         echo "         <OPTION VALUE=\"".$languages[$i]["CODE"]."\">".$languages[$i]["NAME"]."\n";
+<br>
+<table width="95%" align="center" cellpadding="2" cellspacing="2" border="0">
+<tr><td bgcolor="<?php echo $color[0] ?>">
+   <center><b><?php echo _("Options") ?></b></center>
+</td></tr></table>
+
+<?php
+   if (isset($submit_personal)) {
+      # Save personal information
+      if (isset($full_name)) setPref($data_dir, $username, 'full_name', $full_name);
+      if (isset($email_address)) setPref($data_dir, $username, 'email_address', $email_address);
+      if (isset($reply_to)) setPref($data_dir, $username, 'reply_to', $reply_to);  
+      setPref($data_dir, $username, 'use_signature', $usesignature);  
+      setPref($data_dir, $username, 'prefix_sig', $prefixsig);
+      if (isset($signature_edit)) setSig($data_dir, $username, $signature_edit);
+      
+      do_hook('options_personal_save');
+      
+      echo '<br><center><b>'._("Successfully saved personal information!").'</b></center><br>';
+   } else if (isset($submit_display)) {  
+      # Save display preferences
+      setPref($data_dir, $username, 'chosen_theme', $chosentheme);
+      setPref($data_dir, $username, 'show_num', $shownum);
+      setPref($data_dir, $username, 'wrap_at', $wrapat);
+      setPref($data_dir, $username, 'editor_size', $editorsize);
+      setPref($data_dir, $username, 'left_refresh', $leftrefresh);
+      setPref($data_dir, $username, 'language', $language);
+      setPref($data_dir, $username, 'location_of_bar', $folder_new_location);
+      setPref($data_dir, $username, 'location_of_buttons', $button_new_location);
+      setPref($data_dir, $username, 'left_size', $leftsize);
+      setPref($data_dir, $username, 'use_javascript_addr_book', $javascript_abook);
+    
+      do_hook('options_display_save');
+
+      echo '<br><center><b>'._("Successfully saved display preferences!").'</b><br>';
+      echo '<a href="../src/webmail.php" target=_top>' . _("Refresh Page") . '</a></center><br>';
+   } else if (isset($submit_folder)) { 
+      # Save folder preferences
+      if ($trash != 'none') {
+         setPref($data_dir, $username, 'move_to_trash', true);
+         setPref($data_dir, $username, 'trash_folder', $trash);
+      } else {
+         setPref($data_dir, $username, 'move_to_trash', '0');
+         setPref($data_dir, $username, 'trash_folder', 'none');
+      }
+      if ($sent != 'none') {
+         setPref($data_dir, $username, 'move_to_sent', true);
+         setPref($data_dir, $username, 'sent_folder', $sent);
+      } else {
+         setPref($data_dir, $username, 'move_to_sent', '0');
+         setPref($data_dir, $username, 'sent_folder', 'none');
+      } 
+      setPref($data_dir, $username, 'folder_prefix', $folderprefix);
+      setPref($data_dir, $username, 'unseen_notify', $unseennotify);
+      setPref($data_dir, $username, 'unseen_type', $unseentype);
+      do_hook('options_folders_save');
+      echo '<br><center><b>'._("Successfully saved folder preferences!").'</b><br>';
+      echo '<a href="../src/left_main.php" target=left>' . _("Refresh Folder List") . '</a></center><br>';
+   } else {
+      do_hook('options_save');
    }
-   echo "         </SELECT></TT>";
-   echo "      </TD>";
-   echo "   </TR>";
-   echo "</TABLE>";
-
-
-
-   echo "<TABLE WIDTH=100% COLS=2 ALIGN=CENTER>\n";
-   // MOVE_TO_TRASH
-   echo "   <TR>";
-   echo "      <TD WIDTH=60% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Move deleted messages to ");
-   echo "\"$trash_folder\"?";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=40% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   if ($move_to_trash == true)
-      echo "         <INPUT TYPE=RADIO NAME=movetotrash VALUE=1 CHECKED>&nbsp;True<BR>";
-   else
-      echo "         <INPUT TYPE=RADIO NAME=movetotrash VALUE=1>&nbsp;True<BR>";
-
-   if ($move_to_trash == false)
-      echo "         <INPUT TYPE=RADIO NAME=movetotrash VALUE=0 CHECKED>&nbsp;False";
-   else
-      echo "         <INPUT TYPE=RADIO NAME=movetotrash VALUE=0>&nbsp;False";
-
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-
-   // WRAP_AT
-   echo "   <TR>";
-   echo "      <TD WIDTH=60% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Wrap incoming text at:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=40% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   if (isset($wrap_at))
-      echo "         <TT><INPUT TYPE=TEXT SIZE=5 NAME=wrapat VALUE=\"$wrap_at\"></TT><BR>";
-   else
-      echo "         <TT><INPUT TYPE=TEXT SIZE=5 NAME=wrapat VALUE=\"86\"></TT><BR>";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-
-   // EDITOR_SIZE
-   echo "   <TR>";
-   echo "      <TD WIDTH=60% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Size of editor window (in characters):");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=40% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   if ($editor_size >= 5)
-      echo "         <TT><INPUT TYPE=TEXT SIZE=5 NAME=editorsize VALUE=\"$editor_size\"></TT><BR>";
-   else
-      echo "         <TT><INPUT TYPE=TEXT SIZE=5 NAME=editorsize VALUE=\"76\"></TT><BR>";
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "   </TR>";
-
-   // LEFT_REFRESH
-   echo "   <TR>";
-   echo "      <TD WIDTH=60% ALIGN=RIGHT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo           _("Time between auto refresh of folder list:");
-   echo "         </FONT>";
-   echo "      </TD>";
-   echo "      <TD WIDTH=40% ALIGN=LEFT>";
-   echo "         <FONT FACE=\"Arial,Helvetica\">";
-   echo "               <SELECT name=leftrefresh>";
-   if (($left_refresh == "None") || ($left_refresh == "")) 
-      echo "                  <OPTION VALUE=None SELECTED>None";
-   else   
-      echo "                  <OPTION VALUE=None>None";
    
-   if (($left_refresh == "10")) 
-      echo "                  <OPTION VALUE=10 SELECTED>10 Seconds";
-   else   
-      echo "                  <OPTION VALUE=10>10 Seconds";
-   
-   if (($left_refresh == "20")) 
-      echo "                  <OPTION VALUE=20 SELECTED>20 Seconds";
-   else   
-      echo "                  <OPTION VALUE=20>20 Seconds";
-   
-   if (($left_refresh == "30")) 
-      echo "                  <OPTION VALUE=30 SELECTED>30 Seconds";
-   else   
-      echo "                  <OPTION VALUE=30>30 Seconds";
-   
-   if (($left_refresh == "60")) 
-      echo "                  <OPTION VALUE=60 SELECTED>1 Minute";
-   else   
-      echo "                  <OPTION VALUE=60>1 Minute";
-   
-   if (($left_refresh == "120")) 
-      echo "                  <OPTION VALUE=120 SELECTED>2 Minutes";
-   else   
-      echo "                  <OPTION VALUE=120>2 Minutes";
-   
-   if (($left_refresh == "180")) 
-      echo "                  <OPTION VALUE=180 SELECTED>3 Minutes";
-   else   
-      echo "                  <OPTION VALUE=180>3 Minutes";
-   
-   if (($left_refresh == "240")) 
-      echo "                  <OPTION VALUE=240 SELECTED>4 Minutes";
-   else   
-      echo "                  <OPTION VALUE=240>4 Minutes";
-   
-   if (($left_refresh == "300")) 
-      echo "                  <OPTION VALUE=300 SELECTED>5 Minutes";
-   else   
-      echo "                  <OPTION VALUE=300>5 Minutes";
-   
-   if (($left_refresh == "420")) 
-      echo "                  <OPTION VALUE=420 SELECTED>7 Minutes";
-   else   
-      echo "                  <OPTION VALUE=420>7 Minutes";
-   
-   if (($left_refresh == "600")) 
-      echo "                  <OPTION VALUE=600 SELECTED>10 Minutes";
-   else   
-      echo "                  <OPTION VALUE=600>10 Minutes";
-   
-   if (($left_refresh == "720")) 
-      echo "                  <OPTION VALUE=720 SELECTED>12 Minutes";
-   else   
-      echo "                  <OPTION VALUE=720>12 Minutes";
-   
-   if (($left_refresh == "900")) 
-      echo "                  <OPTION VALUE=900 SELECTED>15 Minutes";
-   else   
-      echo "                  <OPTION VALUE=900>15 Minutes";
-   
-   if (($left_refresh == "1200")) 
-      echo "                  <OPTION VALUE=1200 SELECTED>20 Minutes";
-   else   
-      echo "                  <OPTION VALUE=1200>20 Minutes";
-   
-   if (($left_refresh == "1500")) 
-      echo "                  <OPTION VALUE=1500 SELECTED>25 Minutes";
-   else   
-      echo "                  <OPTION VALUE=1500>25 Minutes";
-   
-   if (($left_refresh == "1800")) 
-      echo "                  <OPTION VALUE=1800 SELECTED>30 Minutes";
-   else   
-      echo "                  <OPTION VALUE=1800>30 Minutes";
-   
-      echo "               </SELECT>";
-      echo "         </FONT>";
-      echo "      </TD>";
-      echo "   </TR>";
-      echo "</TABLE>";
-
-   // SIGNATURE
-   echo "<CENTER>";
-   if ($use_signature == true)
-      echo "<INPUT TYPE=CHECKBOX VALUE=\"1\" NAME=usesignature CHECKED>&nbsp;&nbsp;Use a signature?<BR>";
-   else
-      echo "<INPUT TYPE=CHECKBOX VALUE=\"1\" NAME=usesignature>&nbsp;&nbsp;";
-      echo _("Use a signature?");
-      echo "<BR>";
-
-   if ($editor_size < 5)
-      $sig_size = 76;
-   else
-      $sig_size = $editor_size;
-
-   echo "<BR>Signature:<BR><TEXTAREA NAME=signature_edit ROWS=5 COLS=\"$sig_size\">$signature</TEXTAREA><BR>";
-   echo "</CENTER>";
-
+?>
 
-   // SUBMIT BUTTON
-   echo "<BR><CENTER><INPUT TYPE=SUBMIT VALUE=\"";
-   echo _("Submit");
-   echo "\"></CENTER>\n";
-   echo "</FORM>";
 
-   echo "</BODY></HTML>";
-?>
+<table width="90%" cellpadding="0" cellspacing="10" border="0" align="center">
+<tr>
+   <td width="50%" valign="top">
+      <table width="100%" cellpadding="3" cellspacing="0" border="0">
+         <tr>
+            <td bgcolor="<?php echo $color[9] ?>">
+               <a href="options_personal.php"><?php echo _("Personal Information"); ?></a>
+            </td>
+         </tr>
+         <tr>
+            <td bgcolor="<?php echo $color[0] ?>">
+               <?php echo _("This contains personal information about yourself such as your name, your email address, etc.") ?>
+            </td>
+         </tr>   
+      </table><br>
+      <table width="100%" cellpadding="3" cellspacing="0" border="0">
+         <tr>
+            <td bgcolor="<?php echo $color[9] ?>">
+               <a href="options_highlight.php"><?php echo _("Message Highlighting"); ?></a>
+            </td>
+         </tr>
+         <tr>
+            <td bgcolor="<?php echo $color[0] ?>">
+               <?php echo _("Based upon given criteria, incoming messages can have different background colors in the message list.  This helps to easily distinguish who the messages are from, especially for mailing lists.") ?>
+            </td>
+         </tr>   
+      </table><br>
+      <table width="100%" cellpadding="3" cellspacing="0" border="0">
+         <tr>
+            <td bgcolor="<?php echo $color[9] ?>">
+               <a href="options_order.php"><?php echo _("Index Order"); ?></a>
+            </td>
+         </tr>
+         <tr>
+            <td bgcolor="<?php echo $color[0] ?>">
+               <?php echo _("The order of the message index can be rearanged and changed to contain the headers in any order you want.") ?>
+            </td>
+         </tr>   
+      </table><br>
+   </td>
+   <td valign="top" width="50%">
+      <table width="100%" cellpadding="3" cellspacing="0" border="0">
+         <tr>
+            <td bgcolor="<?php echo $color[9] ?>">
+               <a href="options_display.php"><?php echo _("Display Preferences"); ?></a>
+            </td>
+         </tr>
+         <tr>
+            <td bgcolor="<?php echo $color[0] ?>">
+               <?php echo _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings.") ?>
+            </td>
+         </tr>   
+      </table><br>
+      <table width="100%" cellpadding="3" cellspacing="0" border="0">
+         <tr>
+            <td bgcolor="<?php echo $color[9] ?>">
+               <a href="options_folder.php"><?php echo _("Folder Preferences"); ?></a>
+            </td>
+         </tr>
+         <tr>
+            <td bgcolor="<?php echo $color[0] ?>">
+               <?php echo _("These settings change the way your folders are displayed and manipulated.") ?>
+            </td>
+         </tr>   
+      </table><br>
+   </td>
+</tr>
+</table>
+   <?php
+      do_hook('options_link_and_description')
+   ?>
+</body></html>