Cleaned up options main for IE and Netscape compatibility. Did major work on the...
authorthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 18 Nov 2001 10:42:32 +0000 (10:42 +0000)
committerthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 18 Nov 2001 10:42:32 +0000 (10:42 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1774 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/constants.php
functions/options.php
functions/prefs.php
plugins/filters/setup.php
plugins/newmail/setup.php
plugins/squirrelspell/setup.php
plugins/translate/setup.php
src/options.php
src/options_display.php
src/options_folder.php
src/options_personal.php

index 4734a819a05fca6c8b2cac78c9ec401bd3f96b9f..c2b4ec26a56caa1b8ddd3519bd48dbe9a5df9d32 100644 (file)
@@ -46,5 +46,5 @@
     define('SMPREF_JS_ON', 1);
     define('SMPREF_JS_AUTODETECT', 2);
 
     define('SMPREF_JS_ON', 1);
     define('SMPREF_JS_AUTODETECT', 2);
 
-    do_hook("loading_constants");
+    do_hook('loading_constants');
 ?>
 ?>
index 959b92f1e581ddbfe9046dfc70bb208cb63719b3..a205bbf62687537969b0c09e9561c87834f3dbbe 100644 (file)
@@ -36,6 +36,9 @@ define('SMOPT_SIZE_MEDIUM', 2);
 define('SMOPT_SIZE_LARGE', 3);
 define('SMOPT_SIZE_HUGE', 4);
 
 define('SMOPT_SIZE_LARGE', 3);
 define('SMOPT_SIZE_HUGE', 4);
 
+define('SMOPT_SAVE_DEFAULT', 'save_option');
+define('SMOPT_SAVE_NOOP', 'save_option_noop');
+
 /**
  * SquirrelOption: An option for Squirrelmail.
  *
 /**
  * SquirrelOption: An option for Squirrelmail.
  *
@@ -55,17 +58,16 @@ class SquirrelOption {
     var $refresh_level;
     var $size;
     var $comment;
     var $refresh_level;
     var $size;
     var $comment;
+    var $script;
+
+    /* The name of the Save Function for this option. */
+    var $save_function;
 
     /* The various 'values' for this options. */
     var $value;
     var $new_value;
     var $possible_values;
 
 
     /* The various 'values' for this options. */
     var $value;
     var $new_value;
     var $possible_values;
 
-    /* This variable needs to be made private so it can not be messed with. */
-    /* I just don't remember how to do it right now and think it would be   */
-    /* better to keep coding. Someone can fix it, if they want. Or I will.  */
-    var $changed;
-
     function SquirrelOption
     ($name, $caption, $type, $refresh_level, $possible_values = '') {
         /* Set the basic stuff. */
     function SquirrelOption
     ($name, $caption, $type, $refresh_level, $possible_values = '') {
         /* Set the basic stuff. */
@@ -76,6 +78,7 @@ class SquirrelOption {
         $this->possible_values = $possible_values;
         $this->size = SMOPT_SIZE_MEDIUM;
         $this->comment = '';
         $this->possible_values = $possible_values;
         $this->size = SMOPT_SIZE_MEDIUM;
         $this->comment = '';
+        $this->script = '';
 
         /* Check for a current value. */
         if (isset($GLOBALS[$name])) {
 
         /* Check for a current value. */
         if (isset($GLOBALS[$name])) {
@@ -87,11 +90,26 @@ class SquirrelOption {
         /* Check for a new value. */
         if (isset($GLOBALS["new_$name"])) {
             $this->new_value = $GLOBALS["new_$name"];
         /* Check for a new value. */
         if (isset($GLOBALS["new_$name"])) {
             $this->new_value = $GLOBALS["new_$name"];
-            $this->changed = ($this->value !== $this->new_value);
         } else {
             $this->new_value = '';
         } else {
             $this->new_value = '';
-            $this->changed = false;
         }
         }
+
+        /* Set the default save function. */
+        if ((type != SMOPT_TYPE_HIDDEN) && ($type != SMOPT_TYPE_COMMENT)) {
+            $this->save_function = SMOPT_SAVE_DEFAULT;
+        } else {
+            $this->save_function = SMOPT_SAVE_NOOP;
+        }
+    }
+
+    /* Set the value for this option. */
+    function setValue($value) {
+        $this->value = $value;
+    }
+
+    /* Set the new value for this option. */
+    function setNewValue($new_value) {
+        $this->new_value = $new_value;
     }
 
     /* Set the size for this option. */
     }
 
     /* Set the size for this option. */
@@ -104,7 +122,20 @@ class SquirrelOption {
         $this->comment = $comment;
     }
 
         $this->comment = $comment;
     }
 
+    /* Set the script for this option. */
+    function setScript($script) {
+        $this->script = $script;
+    }
+
+    /* Set the save function for this option. */
+    function setSaveFunction($save_function) {
+        $this->save_function = $save_function;
+    }
+
     function createHTMLWidget() {
     function createHTMLWidget() {
+        global $javascript_on;
+
+        /* Get the widget for this option type. */
         switch ($this->type) {
             case SMOPT_TYPE_STRING:
                 $result = $this->createWidget_String();
         switch ($this->type) {
             case SMOPT_TYPE_STRING:
                 $result = $this->createWidget_String();
@@ -136,6 +167,9 @@ class SquirrelOption {
                        . '</FONT>';
         }
 
                        . '</FONT>';
         }
 
+        /* Add the script for this option. */
+        $result .= $this->script;
+
         /* Now, return the created widget. */
         return ($result);
     }
         /* Now, return the created widget. */
         return ($result);
     }
@@ -238,12 +272,49 @@ class SquirrelOption {
         return ($result);
     }
 
         return ($result);
     }
 
-    function hasChanged() {
-        return ($this->changed);
+    function save() {
+        $function = $this->save_function;
+        $function($this);
     }
     }
+
+    function changed() {
+        return ($this->value !== $this->new_value);
+    }
+}
+
+function save_option($option) {
+    global $data_dir, $username;
+    setPref($data_dir, $username, $option->name, $option->new_value);
+
+    /* I do not know if this next line does any good. */
+    $GLOBALS[$name] = $option->new_value;
+}
+
+function save_option_noop($option) {
+    /* Do nothing here... */
 }
 
 }
 
+function create_optpage_element($optpage) {
+    return create_hidden_element('optpage', $optpage);
+}
+
+function create_optmode_element($optmode) {
+    return create_hidden_element('optmode', $optmode);
+}
+
+function create_hidden_element($name, $value) {
+    $result = '<INPUT TYPE="HIDDEN" '
+            . 'NAME="' . $name . '" '
+            . 'VALUE="' . $value . '">';
+    return ($result);
+}
+
+
 function createOptionGroups($optgrps, $optvals) {
 function createOptionGroups($optgrps, $optvals) {
+    return create_option_groups($optgrps, $optvals);
+}
+
+function create_option_groups($optgrps, $optvals) {
     /* Build a simple array with which to start. */
     $result = array();
 
     /* Build a simple array with which to start. */
     $result = array();
 
@@ -286,6 +357,16 @@ function createOptionGroups($optgrps, $optvals) {
                 $next_option->setComment($optset['comment']);
             }
 
                 $next_option->setComment($optset['comment']);
             }
 
+            /* If provided, set the save function for this option. */
+            if (isset($optset['save'])) {
+                $next_option->setSaveFunction($optset['save']);
+            }
+
+            /* If provided, set the script for this option. */
+            if (isset($optset['script'])) {
+                $next_option->setScript($optset['script']);
+            }
+
             /* Add this option to the option array. */
             $result[$grpkey]['options'][] = $next_option;
         }
             /* Add this option to the option array. */
             $result[$grpkey]['options'][] = $next_option;
         }
@@ -296,6 +377,10 @@ function createOptionGroups($optgrps, $optvals) {
 }
 
 function printOptionGroups($option_groups) {
 }
 
 function printOptionGroups($option_groups) {
+    print_option_groups($option_groups);
+}
+
+function print_option_groups($option_groups) {
     foreach ($option_groups as $next_optgrp) {
         echo '<TR><TD ALIGN="CENTER" VALIGN="MIDDLE" COLSPAN="2" NOWRAP><B>'
            . $next_optgrp['name'] . "</B></TD></TR>\n";
     foreach ($option_groups as $next_optgrp) {
         echo '<TR><TD ALIGN="CENTER" VALIGN="MIDDLE" COLSPAN="2" NOWRAP><B>'
            . $next_optgrp['name'] . "</B></TD></TR>\n";
@@ -314,78 +399,6 @@ function printOptionGroups($option_groups) {
     }
 }
 
     }
 }
 
-function OptionSelect( $title, $name, $data, $default, $show = '', $store = '' ) {
-
-    echo "<tr><td align=right valign=middle nowrap>$title: </td><td>" .
-         "<select name=\"$name\">";
-    foreach( $data as $key => $opt ) {
-        if ( $store == '' ) {
-            $vl = $key;
-        } else{
-            $vl = $opt[$store];
-        }
-        if ( $show == '' ) {
-            $nm = $opt;
-        } else{
-            $nm = $opt[$show];
-        }
-        if ( $nm <> '') {
-            echo "<option value=\"$vl\"";
-            if( $vl == $default ) {
-                echo ' selected';
-            }
-            echo ">$nm</option>\n";
-        }
-    }
-    echo "</select></td></tr>\n";
-}
-
-function OptionRadio( $title, $name, $data, $default, $show = '', $store = '', $sep = '&nbsp; &nbsp;'  ) {
-    echo "<tr><td align=right valign=middle nowrap>$title: </td><td>";
-    foreach( $data as $key => $opt ) {
-        if ( $store == '' ) {
-            $vl = $key;
-        } else{
-            $vl = $opt[$store];
-        }
-        if ( $show == '' ) {
-            $nm = $opt;
-        } else{
-            $nm = $opt[$show];
-        }
-        if ( $nm <> '') {
-            echo "<input type=\"radio\" name=\"$name\" value=\"$vl\"";
-            if( $vl == $default ) {
-                echo ' checked';
-            }
-            echo ">$nm $sep\n";
-        }
-    }
-    echo "</td></tr>\n";
-}
-
-function OptionText( $title, $name, $value, $size ) {
-    echo "<tr><td align=right valign=middle nowrap>$title: </td><td>" .
-         "<input name=\"$name\" value=\"$value\" size=\"$size\">" .
-         "</td></tr>\n";
-}
-
-function OptionHidden( $name, $value ) {
-    echo "<INPUT TYPE=HIDDEN NAME=\"$name\" VALUE=\"$value\">\n";
-}
-
-function OptionCheck( $title, $name, $value, $comment ) {
-    if ( $value )
-        $chk = 'checked';
-    echo "<tr><td align=right valign=middle nowrap>$title: </td><td>" .
-         "<input type=\"checkbox\" name=\"$name\" $chk> $comment" .
-         "</td></tr>\n";
-}
-
-function OptionTitle( $title ) {
-    echo "<tr><td colspan=2 align=left valign=middle nowrap><b>$title</b></td></tr>\n";
-}
-
 function OptionSubmit( $name ) {
     echo '<tr><td>&nbsp;</td><td><input type="submit" value="' . _("Submit") . '" name="' . $name . '">' .
          '</td></tr>';
 function OptionSubmit( $name ) {
     echo '<tr><td>&nbsp;</td><td><input type="submit" value="' . _("Submit") . '" name="' . $name . '">' .
          '</td></tr>';
index e719adf622b731d3ded1eb7b321632439b775979..4f9d2a6871b81b03e75a8d6925760a686e8ea8b9 100644 (file)
       }
       return $sig;
    }
       }
       return $sig;
    }
-?>
\ No newline at end of file
+?>
index 03decc5a28e9b1e5d2d7f95bfd35ec4c10ea84bc..2fd817cdeb2beddbd925b69e6eb2bdf7d85d63ea 100644 (file)
       $squirrelmail_plugin_hooks['left_main_before']['filters'] = 'start_filters';
       if ($mailbox == 'INBOX')
          $squirrelmail_plugin_hooks["right_main_after_header"]['filters'] = 'start_filters';
       $squirrelmail_plugin_hooks['left_main_before']['filters'] = 'start_filters';
       if ($mailbox == 'INBOX')
          $squirrelmail_plugin_hooks["right_main_after_header"]['filters'] = 'start_filters';
-      $squirrelmail_plugin_hooks['options_register']['filters'] = 'squirrelmail_plugin_register';
+      $squirrelmail_plugin_hooks['optpage_register_block']['filters'] = 'squirrelmail_plugin_optpage_register_block';
    }
 
    }
 
-   function squirrelmail_plugin_register() {
-      global $optionpages;
+   function squirrelmail_plugin_optpage_register_block() {
+      global $optpage_blocks;
 
 
-      $optionpages[] = array(
+      $optpage_blocks[] = array(
          'name' => _("Message Filters"),
          'url'  => '../plugins/filters/options.php',
          'desc' => _("Filtering enables messages with different criteria to be automatically filtered into different folders for easier organization."),
          'js'   => false
       );
    }
          'name' => _("Message Filters"),
          'url'  => '../plugins/filters/options.php',
          'desc' => _("Filtering enables messages with different criteria to be automatically filtered into different folders for easier organization."),
          'js'   => false
       );
    }
-?>
\ No newline at end of file
+?>
index da34d6ca505027cae110260f9b5401b74023eb51..95514c60b25dea1dff959d0a6f9eb30350344b10 100644 (file)
         global $squirrelmail_plugin_hooks;
         
         $squirrelmail_plugin_hooks['left_main_before']['newmail'] = 'newmail_plugin';
         global $squirrelmail_plugin_hooks;
         
         $squirrelmail_plugin_hooks['left_main_before']['newmail'] = 'newmail_plugin';
-        $squirrelmail_plugin_hooks['options_register']['newmail'] = 'newmail_options';
+        $squirrelmail_plugin_hooks['optpage_register_block']['newmail'] = 'newmail_optpage_register_block';
         $squirrelmail_plugin_hooks['options_link_and_description']['newmail'] = 'newmail_options';
         $squirrelmail_plugin_hooks['options_save']['newmail'] = 'newmail_sav';
         $squirrelmail_plugin_hooks['loading_prefs']['newmail'] = 'newmail_pref';
     }
 
         $squirrelmail_plugin_hooks['options_link_and_description']['newmail'] = 'newmail_options';
         $squirrelmail_plugin_hooks['options_save']['newmail'] = 'newmail_sav';
         $squirrelmail_plugin_hooks['loading_prefs']['newmail'] = 'newmail_pref';
     }
 
-    function newmail_options() {
+    function newmail_optpage_register_block() {
        // Gets added to the user's OPTIONS page.
        // Gets added to the user's OPTIONS page.
-       global $optionpages;
+       global $optpage_blocks;
 
        if ( !soupNazi() ) {
 
            /* Register Squirrelspell with the $optionpages array. */
 
        if ( !soupNazi() ) {
 
            /* Register Squirrelspell with the $optionpages array. */
-           $optionpages[] = array(
+           $optpage_blocks[] = array(
                'name' => _("NewMail Options"),
                'url'  => '../plugins/newmail/newmail_opt.php',
                'desc' => _("This configures settings for playing sounds and/or showing popup windows when new mail arrives."),
                'name' => _("NewMail Options"),
                'url'  => '../plugins/newmail/newmail_opt.php',
                'desc' => _("This configures settings for playing sounds and/or showing popup windows when new mail arrives."),
@@ -238,4 +238,4 @@ window.onload = PopupScriptLoad;
    }
  }
 }
    }
  }
 }
-?>
\ No newline at end of file
+?>
index 37ca6def51d33587686c0a0c90fcd22433a44c53..daa8c1982ce470f04fddbbdd8745158ea8c47879 100644 (file)
         global $squirrelmail_plugin_hooks;
 
         $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] = 'squirrelspell_setup';
         global $squirrelmail_plugin_hooks;
 
         $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] = 'squirrelspell_setup';
-        $squirrelmail_plugin_hooks['options_register']['squirrelspell'] = 'squirrelspell_options';
+        $squirrelmail_plugin_hooks['optpage_register_block']['squirrelspell'] = 'squirrelspell_optpage_register_block';
         $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] = 'squirrelspell_options';
     }
 
         $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] = 'squirrelspell_options';
     }
 
-    function squirrelspell_options() {
+    function squirrelspell_optpage_register_block() {
        // Gets added to the user's OPTIONS page.
        // Gets added to the user's OPTIONS page.
-       global $optionpages;
+       global $optpage_blocks;
 
        if ( !soupNazi() ) {
 
            /* Register Squirrelspell with the $optionpages array. */
 
        if ( !soupNazi() ) {
 
            /* Register Squirrelspell with the $optionpages array. */
-           $optionpages[] = array(
+           $optpage_blocks[] = array(
                'name' => _("SpellChecker Options"),
                'url'  => '../plugins/squirrelspell/sqspell_options.php',
                'desc' => _("Here you may set up how your personal dictionary is stored, edit it, or choose which languages should be available to you when spell-checking."),
                'name' => _("SpellChecker Options"),
                'url'  => '../plugins/squirrelspell/sqspell_options.php',
                'desc' => _("Here you may set up how your personal dictionary is stored, edit it, or choose which languages should be available to you when spell-checking."),
index 99bf7760c4a6b22eb5e6d3fe0b27265a46b8309e..0a79c35160c871cd5a5ad454a9f2ad678e35f189 100644 (file)
@@ -27,7 +27,7 @@ function squirrelmail_plugin_init_translate() {
   global $squirrelmail_plugin_hooks;
 
   $squirrelmail_plugin_hooks['read_body_bottom']['translate'] = 'translate_read_form';
   global $squirrelmail_plugin_hooks;
 
   $squirrelmail_plugin_hooks['read_body_bottom']['translate'] = 'translate_read_form';
-  $squirrelmail_plugin_hooks['options_register']['translate'] = 'translate_opt';
+  $squirrelmail_plugin_hooks['optpage_register_block']['translate'] = 'translate_optpage_register_block';
   $squirrelmail_plugin_hooks['options_save']['translate'] = 'translate_sav';
   $squirrelmail_plugin_hooks['loading_prefs']['translate'] = 'translate_pref';
   $squirrelmail_plugin_hooks['compose_button_row']['translate'] = 'translate_button';
   $squirrelmail_plugin_hooks['options_save']['translate'] = 'translate_sav';
   $squirrelmail_plugin_hooks['loading_prefs']['translate'] = 'translate_pref';
   $squirrelmail_plugin_hooks['compose_button_row']['translate'] = 'translate_button';
@@ -90,9 +90,9 @@ function translate_button() {
 }
 
 
 }
 
 
-function translate_opt() {
-    global $optionpages;
-    $optionpages[] = array(
+function translate_optpage_register_block() {
+    global $optpage_blocks;
+    $optpage_blocks[] = array(
         'name' => _("Translation Options"),
         'url'  => '../plugins/translate/options.php',
         'desc' => _("Which translator should be used when you get messages in a different language?"),
         'name' => _("Translation Options"),
         'url'  => '../plugins/translate/options.php',
         'desc' => _("Which translator should be used when you get messages in a different language?"),
index 4724989957e2ec809a1889d5ccc28e6e6f3acb68..44eb86df029974d503d09ecdcc88e58723ef0605 100644 (file)
 <?php
 <?php
-    /**
-     * options.php
-     *
-     * Copyright (c) 1999-2001 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$
-     */
-
-    require_once('../src/validate.php');
-    require_once('../functions/display_messages.php');
-    require_once('../functions/imap.php');
-    require_once('../functions/array.php');
-   
-    ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
-    $base_uri = $regs[1];   
 
 
-    if (isset($language)) {
-        setcookie('squirrelmail_language', $language, time()+2592000, $base_uri);
-        $squirrelmail_language = $language;
-    }   
+/**
+ * options.php
+ *
+ * Copyright (c) 1999-2001 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$
+ */
+
+require_once('../src/validate.php');
+require_once('../functions/display_messages.php');
+require_once('../functions/imap.php');
+require_once('../functions/array.php');
+require_once('../functions/options.php');
+
+/* Set the base uri. */
+ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
+$base_uri = $regs[1];   
+
+/* First and foremost, deal with language stuff. */
+if (isset($language)) {
+    setcookie('squirrelmail_language', $language, time()+2592000, $base_uri);
+    $squirrelmail_language = $language;
+} else {
+    $language = getPref($data_dir, $username, 'language');
+}
+
+/*********************************/
+/*** Build the resultant page. ***/
+/*********************************/
+
+displayPageHeader($color, _("None"));
+
+define('SMOPT_MODE_DISPLAY', 'display');
+define('SMOPT_MODE_SUBMIT', 'submit');
+define('SMOPT_MODE_LINK', 'link');
+
+define('SMOPT_PAGE_MAIN', 'main');
+define('SMOPT_PAGE_PERSONAL', 'personal');
+define('SMOPT_PAGE_DISPLAY', 'display');
+define('SMOPT_PAGE_HIGHLIGHT', 'highlight');
+define('SMOPT_PAGE_FOLDER', 'folder');
+define('SMOPT_PAGE_ORDER', 'order');
+
+function process_optionmode_submit($optpage, $optpage_data) {
+    /* Initialize the maximum option refresh level. */
+    $max_refresh = SMOPT_REFRESH_NONE;
+
+    /* Save each option in each option group. */
+    foreach ($optpage_data['options'] as $option_grp) {
+        foreach ($option_grp['options'] as $option) {
+            echo "name = '$option->name', "
+               . "value = '$option->value', "
+               . "new_value = '$option->new_value'<BR>\n";
+            if ($option->changed()) {
+                $option->save();
+                $max_refresh = max($max_refresh, $option->refresh_level);
+            }
+        }
+    }
 
 
-    displayPageHeader($color, _("None"));
+    /* Return the max refresh level. */
+    return ($max_refresh);
+}
+
+function process_optionmode_link($optpage) {
+   /* There will be something here, later. */
+}
+
+/* Make sure we have an Option Page set. Default to main. */
+if (!isset($optpage)) {
+    $optpage = 'main';
+}
+
+/* Make sure we have an Option Mode set. Default to display. */
+if (!isset($optmode)) {
+    $optmode = SMOPT_MODE_DISPLAY;
+}
+
+/*************************************************************/
+/*** First, set the load information for each option page. ***/
+/*************************************************************/
+
+/* Initialize load information variables. */
+$optpage_name = '';
+$optpage_file = '';
+$optpage_loader = '';
+
+/* Set the load information for each page. */
+switch ($optpage) {
+    case SMOPT_PAGE_MAIN: break;
+    case SMOPT_PAGE_PERSONAL:
+        $optpage_name   = _("Personal Information");
+        $optpage_file   = 'options_personal.php';
+        $optpage_loader = 'load_optpage_data_personal';
+        break;
+    case SMOPT_PAGE_DISPLAY:
+        $optpage_name   = _("Display Preferences");
+        $optpage_file   = 'options_display.php';
+        $optpage_loader = 'load_optpage_data_display';
+        break;
+    case SMOPT_PAGE_HIGHLIGHT:
+        $optpage_name   = _("Message Highlighting");
+        $optpage_file   = 'options_highlight.php';
+        $optpage_loader = 'load_optpage_data_highlight';
+        break;
+    case SMOPT_PAGE_FOLDER:
+        $optpage_name   = _("Folder Preferences");
+        $optpage_file   = 'options_folder.php';
+        $optpage_loader = 'load_optpage_data_folder';
+        break;
+    case SMOPT_PAGE_ORDER:
+        $optpage_name = _("Index Order");
+        $optpage_file = 'options_order.php';
+        $optpage_loader = 'load_optpage_data_order';
+        break;
+    default: do_hook('set_optpage_loadinfo');
+}
+
+/**********************************************************/
+/*** Second, load the option information for this page. ***/
+/**********************************************************/
+
+if ($optpage != SMOPT_PAGE_MAIN) {
+    /* Include the file for this optionpage. */
+    require_once($optpage_file);
+
+    /* Assemble the data for this option page. */
+    $optpage_data = array();
+    $optpage_data = $optpage_loader();
+    $optpage_data['options'] =
+        create_option_groups($optpage_data['grps'], $optpage_data['vals']);
+}
+
+/***********************************************************/
+/*** Next, process anything that needs to be processed. ***/
+/***********************************************************/
+
+switch ($optmode) {
+    case SMOPT_MODE_SUBMIT:
+        $max_refresh = process_optionmode_submit($optpage, $optpage_data);
+        break;
+    case SMOPT_MODE_LINK:
+        $max_refresh = process_optionmode_link($optpage, $optpage_data);
+        break;
+}
+
+/*** MOVE THIS DISPLAY CODE DOWN EVENTUALLY!!! ***/
+
+$optpage_title = _("Options");
+if (isset($optpage_name) && ($optpage_name != '')) {
+    $optpage_title .= " - $optpage_name";
+}
 
 ?>
 
 
 ?>
 
-<br>
-<TABLE BGCOLOR="<?php echo $color[0] ?>" WIDTH="95%" align="center" CELLPADDING="2" CELLSPACING="0" BORDER="0">
-<TR><TD align="center">
-    <b><?php echo _("Options") ?></b><br>
-
+<BR>
+<TABLE BGCOLOR="<?php echo $color[0] ?>" WIDTH="95%" ALIGN="CENTER" CELLPADDING="2" CELLSPACING="0" BORDER="0">
+<TR><TD ALIGN="CENTER">
+    <B><?php echo $optpage_title; ?></B><BR>
     <TABLE WIDTH="100%" BORDER="0" CELLPADDING="5" CELLSPACING="0">
     <TABLE WIDTH="100%" BORDER="0" CELLPADDING="5" CELLSPACING="0">
-    <TR><TD BGCOLOR="<?php echo $color[4] ?>" align="center">
+    <TR><TD BGCOLOR="<?php echo $color[4] ?>" ALIGN="CENTER">
 
 <?php
 
 <?php
-    if (isset($submit_personal)) {
-        /* Save personal information. */
-        setPref($data_dir, $username, 'full_name', $new_full_name);
-        setPref($data_dir, $username, 'email_address', $new_email_address);
-        setPref($data_dir, $username, 'reply_to', $new_reply_to);
-        setPref($data_dir, $username, 'reply_citation_style', $new_reply_citation_style);
-        setPref($data_dir, $username, 'reply_citation_start', $new_reply_citation_start);
-        setPref($data_dir, $username, 'reply_citation_end', $new_reply_citation_end);
-        setPref($data_dir, $username, 'use_signature', $new_use_signature);
-        setPref($data_dir, $username, 'prefix_sig', $new_prefix_sig);
-        setSig($data_dir, $username, $new_signature_abs);
-      
-        do_hook('options_personal_save');
-      
-        echo '<br><b>'._("Successfully saved personal information!").'</b><br>';
-    } else if (isset($submit_display)) {
-        /* Do checking to make sure $new_theme is in the array. */
-        $theme_in_array = false;
-        for ($i=0; $i < count($theme); $i++) {
-            if ($theme[$i]['PATH'] == $new_chosen_theme) {
-                $theme_in_array = true;
-                break;
-            }
-        }
-        if (!$theme_in_array) {
-            $new_chosen_theme = '';
-        }
-   
-        /* Save display preferences. */
-        setPref($data_dir, $username, 'chosen_theme', $new_chosen_theme);
-        setPref($data_dir, $username, 'language', $new_language);
-        setPref($data_dir, $username, 'use_javascript_addr_book', $new_use_javascript_addr_book);
-        setPref($data_dir, $username, 'javascript_setting', $new_javascript_setting);
-        setPref($data_dir, $username, 'show_num', $new_show_num);
-        setPref($data_dir, $username, 'wrap_at', $new_wrap_at);
-        setPref($data_dir, $username, 'editor_size', $new_editor_size);
-        setPref($data_dir, $username, 'location_of_buttons', $new_location_of_buttons);
-        setPref($data_dir, $username, 'alt_index_colors', $new_alt_index_colors);
-        setPref($data_dir, $username, 'show_html_default', $new_show_html_default);
-        setPref($data_dir, $username, 'include_self_reply_all', $new_include_self_reply_all);
-        setPref($data_dir, $username, 'page_selector', $new_page_selector);
-        setPref($data_dir, $username, 'page_selector_max', $new_page_selector_max);
-        setPref($data_dir, $username, 'show_xmailer_default', $new_show_xmailer_default);
-        setPref($data_dir, $username, 'attachment_common_show_images', $new_attachment_common_show_images);
-        setPref($data_dir, $username, 'pf_subtle_link', $new_pf_subtle_link);
-        setPref($data_dir, $username, 'pf_cleandisplay', $new_pf_cleandisplay);
-
-        $js_autodetect_results = (isset($new_js_autodetect_results) ? $new_js_autodetect_results : SMPREF_JS_OFF);
-        if ($new_javascript_setting == SMPREF_JS_AUTODETECT) {
-            if ($js_autodetect_results == SMPREF_JS_ON) {
-                setPref($data_dir, $username, 'javascript_on', SMPREF_JS_ON);
-            } else {
-                setPref($data_dir, $username, 'javascript_on', SMPREF_JS_OFF);
-            }
-        } else {
-            setPref($data_dir, $username, 'javascript_on', $new_javascript_setting);
-        }
-
-        do_hook('options_display_save');
-
-        echo '<br><b>'._("Successfully saved display preferences!").'</b><br>';
-        echo '<A HREF="../src/webmail.php?right_frame=options.php" target=_top>' . _("Refresh Page") . '</A><br>';
-    } else if (isset($submit_folder)) { 
-        /* Save trash folder preferences. */
-        if ($new_trash_folder != SMPREF_NONE) {
-            setPref($data_dir, $username, 'move_to_trash', SMPREF_ON);
-            setPref($data_dir, $username, 'trash_folder', $new_trash_folder);
-        } else {
-            setPref($data_dir, $username, 'move_to_trash', SMPREF_OFF);
-            setPref($data_dir, $username, 'trash_folder', SMPREF_NONE);
-        }
-
-        /* Save sent folder preferences. */
-        if ($new_sent_folder != SMPREF_NONE) {
-            setPref($data_dir, $username, 'move_to_sent', SMPREF_ON);
-            setPref($data_dir, $username, 'sent_folder', $new_sent_folder);
-        } else {
-            setPref($data_dir, $username, 'move_to_sent', SMPREF_OFF);
-            setPref($data_dir, $username, 'sent_folder', SMPREF_NONE);
-        }
 
 
-        /* Save draft folder preferences. */
-        if ($new_draft_folder != SMPREF_NONE) {
-            setPref($data_dir, $username, 'save_as_draft', SMPREF_ON);
-            setPref($data_dir, $username, 'draft_folder', $new_draft_folder);
-        } else {
-            setPref($data_dir, $username, 'save_as_draft', SMPREF_OFF);
-            setPref($data_dir, $username, 'draft_folder', SMPREF_NONE);
-        }
+/*******************************************************************/
+/* DO OLD SAVING OF SUBMITTED OPTIONS. THIS WILL BE REMOVED LATER. */
+/*******************************************************************/
+
+/* If in submit mode, select a save hook name and run it. */
+if ($optmode == SMOPT_MODE_SUBMIT)      {
+    /* Select a save hook name. */
+    switch ($optpage) {
+        case SMOPT_PAGE_PERSONAL:
+            $save_hook_name = 'options_personal_save';
+            break;
+        case SMOPT_PAGE_DISPLAY:
+            $save_hook_name = 'options_display_save';
+            break;
+        case SMOPT_PAGE_FOLDER:
+            $save_hook_name = 'options_folder_save';
+            break;
+        default: $save_hook_name = 'options_save';
+            break;
+    }
 
 
-        /* Save folder prefix preferences. */
-        if (isset($folderprefix)) {
-            setPref($data_dir, $username, 'folder_prefix', $folderprefix);
-        } else {
-            setPref($data_dir, $username, 'folder_prefix', '');
+    /* Run the options save hook. */
+    do_hook($save_hook_name);
+}
+
+/***************************************************************/
+/* Apply logic to decide what optpage we want to display next. */
+/***************************************************************/
+
+/* If this is the result of an option page being submitted, then */
+/* show the main page. Otherwise, show whatever page was called. */
+
+if ($optmode == SMOPT_MODE_SUBMIT) {
+    $optpage = SMOPT_PAGE_MAIN;
+}
+
+/***************************************************************/
+/* Finally, display whatever page we are supposed to show now. */
+/***************************************************************/
+
+/*
+ * The main option page has a different layout then the rest of the option
+ * pages. Therefore, we create it here first, then the others below.
+ */
+if ($optpage == SMOPT_PAGE_MAIN) {
+    /**********************************************************/
+    /* First, display the results of a submission, if needed. */
+    /**********************************************************/
+    if ($optmode == SMOPT_MODE_SUBMIT) {
+        /* Display a message indicating a successful save. */
+        echo '<B>' . _("Successfully Saved Options") . ": $optpage_name</B><BR>\n";
+
+        /* If $max_refresh != SMOPT_REFRESH_NONE, provide a refresh link. */
+        if ($max_refresh == SMOPT_REFRESH_FOLDERLIST) {
+            echo '<A HREF="../src/left_main.php" TARGET="left">' . _("Refresh Folder List") . '</A><BR>';
+        } else if ($max_refresh) {
+            echo '<A HREF="../src/webmail.php?right_frame=options.php" TARGET="_top">' . _("Refresh Page") . '</A><BR>';
         }
         }
-
-        setPref($data_dir, $username, 'location_of_bar', $new_location_of_bar);
-        setPref($data_dir, $username, 'left_size', $new_left_size);
-        setPref($data_dir, $username, 'left_refresh', $new_left_refresh);
-        setPref($data_dir, $username, 'unseen_notify', $new_unseen_notify);
-        setPref($data_dir, $username, 'unseen_type', $new_unseen_type);
-        setPref($data_dir, $username, 'collapse_folders', $new_collapse_folders);
-        setPref($data_dir, $username, 'date_format', $new_date_format);
-        setPref($data_dir, $username, 'hour_format', $new_hour_format);
-
-        do_hook('options_folders_save');
-        echo '<br><b>'._("Successfully saved folder preferences!").'</b><br>';
-        echo '<A HREF="../src/left_main.php" target=left>' . _("Refresh Folder List") . '</A><br>';
-    } else {
-        do_hook('options_save');
     }
     }
-
-    /****************************************/
-    /* Now build our array of option pages. */
-    /****************************************/
+    /******************************************/
+    /* Build our array of Option Page Blocks. */
+    /******************************************/
+    $optpage_blocks = array();
 
     /* Build a section for Personal Options. */
 
     /* Build a section for Personal Options. */
-    $optionpages[] = array(
+    $optpage_blocks[] = array(
         'name' => _("Personal Information"),
         'name' => _("Personal Information"),
-        'url'  => 'options_personal.php',
+        'url'  => 'options.php?optpage=' . SMOPT_PAGE_PERSONAL,
         'desc' => _("This contains personal information about yourself such as your name, your email address, etc."),
         'js'   => false
     );
 
     /* Build a section for Display Options. */
         'desc' => _("This contains personal information about yourself such as your name, your email address, etc."),
         'js'   => false
     );
 
     /* Build a section for Display Options. */
-    $optionpages[] = array(
+    $optpage_blocks[] = array(
         'name' => _("Display Preferences"),
         'name' => _("Display Preferences"),
-        'url'  => 'options_display.php',
+        'url'  => 'options.php?optpage=' . SMOPT_PAGE_DISPLAY,
         'desc' => _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings."),
         'js'   => false
     );
 
     /* Build a section for Message Highlighting Options. */
         'desc' => _("You can change the way that SquirrelMail looks and displays information to you, such as the colors, the language, and other settings."),
         'js'   => false
     );
 
     /* Build a section for Message Highlighting Options. */
-    $optionpages[] = array(
+    $optpage_blocks[] = array(
         'name' =>_("Message Highlighting"),
         'url'  => 'options_highlight.php',
         'desc' =>_("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."),
         'name' =>_("Message Highlighting"),
         'url'  => 'options_highlight.php',
         'desc' =>_("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."),
     );
 
     /* Build a section for Folder Options. */
     );
 
     /* Build a section for Folder Options. */
-    $optionpages[] = array(
+    $optpage_blocks[] = array(
         'name' => _("Folder Preferences"),
         'name' => _("Folder Preferences"),
-        'url'  => 'options_folder.php',
+        'url'  => 'options.php?optpage=' . SMOPT_PAGE_FOLDER,
         'desc' => _("These settings change the way your folders are displayed and manipulated."),
         'js'   => false
     );
 
     /* Build a section for Index Order Options. */
         'desc' => _("These settings change the way your folders are displayed and manipulated."),
         'js'   => false
     );
 
     /* Build a section for Index Order Options. */
-    $optionpages[] = array(
+    $optpage_blocks[] = array(
         'name' => _("Index Order"),
         'url'  => 'options_order.php',
         'desc' => _("The order of the message index can be rearanged and changed to contain the headers in any order you want."),
         'js'   => false
     );
         'name' => _("Index Order"),
         'url'  => 'options_order.php',
         'desc' => _("The order of the message index can be rearanged and changed to contain the headers in any order you want."),
         'js'   => false
     );
+
     /* Build a section for plugins wanting to register an optionpage. */
     /* Build a section for plugins wanting to register an optionpage. */
-    do_hook('options_register');
+    do_hook('optpage_register_block');
 
     /*****************************************************/
     /* Let's sort Javascript Option Pages to the bottom. */
     /*****************************************************/
 
     /*****************************************************/
     /* Let's sort Javascript Option Pages to the bottom. */
     /*****************************************************/
-    $js_optionpages = array();
-    $reg_optionpages = array();
-    foreach ($optionpages as $optpage) {
-        if (!$optpage['js']) {
-            $reg_optionpages[] = $optpage;
+    $js_optpage_blocks = array();
+    $reg_optpage_blocks = array();
+    foreach ($optpage_blocks as $cur_optpage) {
+        if (!$cur_optpage['js']) {
+            $reg_optpage_blocks[] = $cur_optpage;
         } else if ($javascript_on == SMPREF_JS_ON) {
         } else if ($javascript_on == SMPREF_JS_ON) {
-            $js_optionpages[] = $optpage;
+            $js_optpage_blocks[] = $cur_optpage;
         }
     }
         }
     }
-    $optionpages = array_merge($reg_optionpages, $js_optionpages);
+    $optpage_blocks = array_merge($reg_optpage_blocks, $js_optpage_blocks);
 
     /********************************************/
     /* Now, print out each option page section. */
 
     /********************************************/
     /* Now, print out each option page section. */
     echo "<TABLE BGCOLOR=\"$color[4]\" WIDTH=\"100%\" CELLPADDING=0 CELLSPACING=\"5\" BORDER=\"0\">" .
                 '<TR><TD VALIGN="TOP">' .
                    "<TABLE BGCOLOR=\"$color[4]\" WIDTH=\"100%\" CELLPADDING=\"3\" CELLSPACING=\"0\" BORDER=\"0\">";
     echo "<TABLE BGCOLOR=\"$color[4]\" WIDTH=\"100%\" CELLPADDING=0 CELLSPACING=\"5\" BORDER=\"0\">" .
                 '<TR><TD VALIGN="TOP">' .
                    "<TABLE BGCOLOR=\"$color[4]\" WIDTH=\"100%\" CELLPADDING=\"3\" CELLSPACING=\"0\" BORDER=\"0\">";
-    foreach ($optionpages as $next_optpage) {
+    foreach ($optpage_blocks as $next_optpage) {
         if ($first_optpage == false) {
             $first_optpage = $next_optpage;
         } else {
         if ($first_optpage == false) {
             $first_optpage = $next_optpage;
         } else {
         print_optionpages_row($first_optpage);
     }
 
         print_optionpages_row($first_optpage);
     }
 
-    echo '</TABLE>' .
-                '</TD></TR>' .
-             "</TABLE>\n";
+    echo "</TABLE></TD></TR></TABLE>\n";
 
     do_hook('options_link_and_description');
 
 
     do_hook('options_link_and_description');
 
+
+/*************************************************************************/
+/* If we are not looking at the main option page, display the page here. */
+/*************************************************************************/
+} else {
+    echo '<FORM NAME="f" ACTION="options.php" METHOD="POST"><BR>' . "\n"
+       . '<TABLE WIDTH="100%" CELLPADDING="2" CELLSPACING="0" BORDER="0">' . "\n"
+       . create_optpage_element($optpage)
+       . create_optmode_element(SMOPT_MODE_SUBMIT);
+
+    /* Output the option groups for this page. */
+    print_option_groups($optpage_data['options']);
+
+    /*** FIXME: CURRENTLY, THIS NEXT SWITCH STATEMENT DOES NOT TAKE
+     *** INTO ACCOUNT FOR PLUGINS. NEED TO FIX IT. ***/
+    /* Set the inside_hook_name and submit_name. */
+    switch ($optpage) {
+        case SMOPT_PAGE_PERSONAL:
+            $inside_hook_name = 'options_personal_inside';
+            $bottom_hook_name = 'options_personal_bottom';
+            $submit_name = 'submit_personal';
+            break;
+        case SMOPT_PAGE_DISPLAY:
+            $inside_hook_name = 'options_display_inside';
+            $bottom_hook_name = 'options_display_bottom';
+            $submit_name = 'submit_display';
+            break;
+        case SMOPT_PAGE_HIGHLIGHT:
+            $inside_hook_name = 'options_highlight_inside';
+            $bottom_hook_name = 'options_display_bottom';
+            $submit_name = 'submit_highlight';
+            break;
+        case SMOPT_PAGE_FOLDER:
+            $inside_hook_name = 'options_folder_inside';
+            $bottom_hook_name = 'options_display_bottom';
+            $submit_name = 'submit_folder';
+            break;
+        case SMOPT_PAGE_ORDER:
+            $inside_hook_name = 'options_order_inside';
+            $bottom_hook_name = 'options_order_bottom';
+            $submit_name = 'submit_order';
+            break;
+        default:
+            $inside_hook_name = '';
+            $bottom_hook_name = '';
+            $submit_name = 'submit';
+    }
+
+    /* If it is not empty, trigger the inside hook. */
+    if ($inside_hook_name != '') {
+        do_hook($inside_hook_name);    
+    }
+
+    /* Spit out a submit button. */
+    OptionSubmit($submit_name);
+    echo '</TABLE></FORM>';
+
+    /* If it is not empty, trigger the bottom hook. */
+    if ($bottom_hook_name != '') {
+        do_hook($bottom_hook_name);    
+    }
+}
+
 ?>
     </TD></TR>
     </TABLE>
 ?>
     </TD></TR>
     </TABLE>
 </TD></TR>
 </TABLE>
 
 </TD></TR>
 </TABLE>
 
-</body></html>
+</BODY></HTML>
 
 <?php
 
 
 <?php
 
 
         echo          '</TR>' .
                       '<TR>' .
 
         echo          '</TR>' .
                       '<TR>' .
-                         "<TD VALIGN=top BGCOLOR=\"$color[0]\">" .
+                         "<TD VALIGN=top BGCOLOR=\"$color[0]\" WIDTH=\"50%\">" .
                             $leftopt['desc'] .
                          '</TD>' .
                          "<TD VALIGN=top BGCOLOR=\"$color[4]\">&nbsp;</TD>";
         if ($rightopt) {
                             $leftopt['desc'] .
                          '</TD>' .
                          "<TD VALIGN=top BGCOLOR=\"$color[4]\">&nbsp;</TD>";
         if ($rightopt) {
-            echo         "<TD VALIGN=top BGCOLOR=\"$color[0]\">" .
+            echo         "<TD VALIGN=top BGCOLOR=\"$color[0]\" WIDTH=\"50%\">" .
                             $rightopt['desc'] .
                          '</TD>';
         } else {
                             $rightopt['desc'] .
                          '</TD>';
         } else {
-            echo "<TD VALIGN=top BGCOLOR=\"$color[4]\">&nbsp;</TD>";
+            echo         "<TD VALIGN=top BGCOLOR=\"$color[4]\" WIDTH=\"50%\">&nbsp;</TD>";
         }
         
         echo          '</TR>' .
         }
         
         echo          '</TR>' .
index c9a69b573cf4ff7821305d3c0c03a30d54b83798..ccb337dedbdf15e216fea93d75c5298bd0f601e9 100644 (file)
@@ -1,37 +1,24 @@
 <?php
 <?php
-   /**
-    **  options_display.php
-    **
-    **  Copyright (c) 1999-2000 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Displays all optinos about display preferences
-    **
-    **  $Id$
-    **/
-
-   require_once('../src/validate.php');
-   require_once('../functions/display_messages.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/array.php');
-   require_once('../functions/plugin.php');
-   require_once('../functions/options.php');
-
-   displayPageHeader($color, 'None');
-   $language = getPref($data_dir, $username, 'language');
-?>
-   <br>
-<table width="95%" align="center" border="0" cellpadding="2" cellspacing="0">
-<tr><td bgcolor="<?php echo $color[0] ?>" align="center">
-
-   <b><?php echo _("Options") . ' - ' . _("Display Preferences"); ?></b><br>
 
 
-   <table width="100%" border="0" cellpadding="1" cellspacing="1">
-   <tr><td bgcolor="<?php echo $color[4] ?>" align="center">
-
-   <form name="f" action="options.php" method="post"><br>
-      <table width="100%" cellpadding="2" cellspacing="0" border="0">
-<?php
+/**
+ * options_display.php
+ *
+ * Copyright (c) 1999-2001 The SquirrelMail Development Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Displays all optinos about display preferences
+ *
+ * $Id$
+ */
+
+/* Define the group constants for the display options page. */
+define('SMOPT_GRP_GENERAL', 0);
+define('SMOPT_GRP_MAILBOX', 1);
+define('SMOPT_GRP_MESSAGE', 2);
+
+/* Define the optpage load function for the display options page. */
+function load_optpage_data_display() {
+    global $theme, $languages, $js_autodetect_results;
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
@@ -40,9 +27,6 @@
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
-    define('SMOPT_GRP_GENERAL', 0);
-    define('SMOPT_GRP_MAILBOX', 1);
-    define('SMOPT_GRP_MESSAGE', 2);
 
     /*** Load the General Options into the array ***/
     $optgrps[SMOPT_GRP_GENERAL] = _("General Display Options");
 
     /*** Load the General Options into the array ***/
     $optgrps[SMOPT_GRP_GENERAL] = _("General Display Options");
@@ -58,7 +42,8 @@
         'caption' => _("Theme"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_ALL,
         'caption' => _("Theme"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_ALL,
-        'posvals' => $theme_values
+        'posvals' => $theme_values,
+        'save'    => 'save_option_theme'
     );
 
     $language_values = array();
     );
 
     $language_values = array();
                            SMPREF_JS_OFF        => _("Never"))
     );
 
                            SMPREF_JS_OFF        => _("Never"))
     );
 
+    $js_autodetect_script = "
+        <SCRIPT LANGUAGE=\"JavaScript\"><!--
+           document.forms[0].new_js_autodetect_results.value = '" . SMPREF_JS_ON . "';
+        // --></SCRIPT>
+    ";
     $js_autodetect_results = SMPREF_JS_OFF;
     $optvals[SMOPT_GRP_GENERAL][] = array(
         'name'    => 'js_autodetect_results',
         'caption' => '',
         'type'    => SMOPT_TYPE_HIDDEN,
     $js_autodetect_results = SMPREF_JS_OFF;
     $optvals[SMOPT_GRP_GENERAL][] = array(
         'name'    => 'js_autodetect_results',
         'caption' => '',
         'type'    => SMOPT_TYPE_HIDDEN,
-        'refresh' => SMOPT_REFRESH_NONE
+        'refresh' => SMOPT_REFRESH_NONE,
+        'script'  => $js_autodetect_script,
+        'save'    => 'save_option_javascript_autodetect'
     );
 
     /*** Load the General Options into the array ***/
     );
 
     /*** Load the General Options into the array ***/
         'refresh' => SMOPT_REFRESH_NONE
     );
 
         'refresh' => SMOPT_REFRESH_NONE
     );
 
-    /* Build and output the option groups. */
-    $option_groups = createOptionGroups($optgrps, $optvals);
-    printOptionGroups($option_groups);
-    
-    do_hook('options_display_inside');
-    echo "<TR><TD>&nbsp;</TD></TR>\n";
+    /* Assemble all this together and return it as our result. */
+    $result = array(
+        'grps' => $optgrps,
+        'vals' => $optvals
+    );
+    return ($result);
+}
 
 
-    OptionSubmit( 'submit_display' );
-?>
+/******************************************************************/
+/** Define any specialized save functions for this option page. ***/
+/******************************************************************/
 
 
-      </table>
-   </form>
+function save_option_theme($option) {
+    global $theme;
 
 
-   <?php do_hook('options_display_bottom'); ?>
+    /* Do checking to make sure $new_theme is in the array. */
+    $theme_in_array = false;
+    for ($i = 0; $i < count($theme); ++$i) {
+        if ($theme[$i]['PATH'] == $option->new_value) {
+            $theme_in_array = true;
+            break;
+        }
+    }
+
+    if (!$theme_in_array) {
+        $option->new_value = '';
+    }
 
 
-    </td></tr>
-    </table>
+    /* Save the option like normal. */
+    save_option($option);
+}
 
 
-<SCRIPT LANGUAGE="JavaScript"><!--
-  document.forms[0].new_js_autodetect_results.value = '<?php echo SMPREF_JS_ON; ?>';
-// --></SCRIPT>
+function save_option_javascript_autodetect($option) {
+    global $data_dir, $username, $new_javascript_setting;
 
 
-</td></tr>
-</table>
-</body></html>
+    /* Set javascript either on or off. */
+    if ($new_javascript_setting == SMPREF_JS_AUTODETECT) {
+        if ($option->new_value == SMPREF_JS_ON) {
+            setPref($data_dir, $username, 'javascript_on', SMPREF_JS_ON);
+        } else {
+            setPref($data_dir, $username, 'javascript_on', SMPREF_JS_OFF);
+        }
+    } else {
+        setPref($data_dir, $username, 'javascript_on', $new_javascript_setting);
+    }
+}
+
+?>
index 2e0e60fbffeb804f70d1a74ced95cf239ded1e0f..23b5b0187d3700080abae17c6f2440bb98e9fd4c 100644 (file)
@@ -1,54 +1,32 @@
 <?php
 <?php
-   /**
-    **  options_folder.php
-    **
-    **  Copyright (c) 1999-2000 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Displays all options relating to folders
-    **
-    **  $Id$
-    **/
-
-   require_once('../src/validate.php');
-   require_once('../functions/display_messages.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/array.php');
-   require_once('../functions/plugin.php');
-   require_once('../functions/options.php');   
-   
-   displayPageHeader($color, 'None');
-
-   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
-   $boxes = sqimap_mailbox_list($imapConnection);
-   sqimap_logout($imapConnection);
-?>
-   <br>
-<table width="95%" align="center" border="0" cellpadding="2" cellspacing="0">
-<tr><td bgcolor="<?php echo $color[0] ?>" align="center">
-
-      <b><?php echo _("Options") . " - " . _("Folder Preferences"); ?></b>
-
-    <table width="100%" border="0" cellpadding="1" cellspacing="1">
-    <tr><td bgcolor="<?php echo $color[4] ?>" align="center">
-
-   <form name="f" action="options.php" method="post"><br>
-
-      <table width="100%" cellpadding="2" cellspacing="0" border="0">
-
-<?php if ($show_prefix_option == true) {   ?>   
-         <tr>
-            <td align=right nowrap><?php echo _("Folder Path"); ?>:
-            </td><td>
-<?php if (isset ($folder_prefix))
-      echo '         <input type="text" name="folderprefix" value="'.$folder_prefix.'" size="35"><br>';
-   else
-      echo '         <input type="text" name="folderprefix" value="'.$default_folder_prefix.'" size="35"><br>';
-?>
-            </td>
-         </tr>
-<?php }          
 
 
+/**
+ * options_folder.php
+ *
+ * Copyright (c) 1999-2001 The SquirrelMail Development Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Displays all options relating to folders
+ *
+ * $Id$
+ */
+
+require_once('../functions/imap.php');
+
+/* Define the group constants for the folder options page. */   
+define('SMOPT_GRP_SPCFOLDER', 0);
+define('SMOPT_GRP_FOLDERLIST', 1);
+
+/* Define the optpage load function for the folder options page. */
+function load_optpage_data_folder() {
+    global $username, $key, $imapServerAddress, $imapPort;
+    global $folder_prefix, $default_folder_prefix;
+
+    /* Get some imap data we need later. */
+    $imapConnection =
+        sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
+    $boxes = sqimap_mailbox_list($imapConnection);
+    sqimap_logout($imapConnection);
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
-    define('SMOPT_GRP_SPCFOLDER', 0);
-    define('SMOPT_GRP_FOLDERLIST', 1);
 
     /*** Load the General Options into the array ***/
     $optgrps[SMOPT_GRP_SPCFOLDER] = _("Special Folder Options");
     $optvals[SMOPT_GRP_SPCFOLDER] = array();
 
 
     /*** Load the General Options into the array ***/
     $optgrps[SMOPT_GRP_SPCFOLDER] = _("Special Folder Options");
     $optvals[SMOPT_GRP_SPCFOLDER] = array();
 
+    if (!isset($folder_prefix)) { $folder_prefix = $default_folder_prefix; }
+    if ($show_prefix_option) {
+        $optvals[SMOPT_GRP_SPCFOLDER][] = array(
+            'name'    => 'folder_prefix',
+            'caption' => _("Folder Path"),
+            'type'    => SMOPT_TYPE_STRING,
+            'refresh' => SMOPT_REFRESH_FOLDERLIST,
+            'size'    => SMOPT_SIZE_LARGE
+        );
+    }
+
     $special_folder_values = array();
     foreach ($boxes as $folder) {
         if (strtolower($folder['unformatted']) != 'inbox') {
     $special_folder_values = array();
     foreach ($boxes as $folder) {
         if (strtolower($folder['unformatted']) != 'inbox') {
@@ -80,7 +67,8 @@
         'caption' => _("Trash Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
         'caption' => _("Trash Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
-        'posvals' => $trash_folder_values
+        'posvals' => $trash_folder_values,
+        'save'    => 'save_option_trash_folder'
     );
     
     $sent_none = array(SMPREF_NONE => _("Do not use Sent"));
     );
     
     $sent_none = array(SMPREF_NONE => _("Do not use Sent"));
@@ -90,7 +78,8 @@
         'caption' => _("Sent Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
         'caption' => _("Sent Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
-        'posvals' => $sent_folder_values
+        'posvals' => $sent_folder_values,
+        'save'    => 'save_option_sent_folder'
     );
     
     $draft_none = array(SMPREF_NONE => _("Do not use Drafts"));
     );
     
     $draft_none = array(SMPREF_NONE => _("Do not use Drafts"));
         'caption' => _("Draft Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
         'caption' => _("Draft Folder"),
         'type'    => SMOPT_TYPE_STRLIST,
         'refresh' => SMOPT_REFRESH_FOLDERLIST,
-        'posvals' => $draft_folder_values
+        'posvals' => $draft_folder_values,
+        'save'    => 'save_option_draft_folder'
     );
 
     /*** Load the General Options into the array ***/
     );
 
     /*** Load the General Options into the array ***/
                            SMPREF_TIME_24HR => _("24-hour clock")) 
     );
 
                            SMPREF_TIME_24HR => _("24-hour clock")) 
     );
 
+    /* Assemble all this together and return it as our result. */
+    $result = array(
+        'grps' => $optgrps,
+        'vals' => $optvals
+    );
+    return ($result);
+}
+
+/******************************************************************/
+/** Define any specialized save functions for this option page. ***/
+/******************************************************************/
+function save_option_trash_folder($option) {
+    global $data_dir, $username;
+
+    /* Set move to trash on or off. */
+    $trash_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
+    setPref($data_dir, $username, 'move_to_trash', $trash_on);
 
 
-    /* Build and output the option groups. */
-    $option_groups = createOptionGroups($optgrps, $optvals);
-    printOptionGroups($option_groups);
-                 
-    echo '<TR><TD ALIGN="CENTER" VALIGN="MIDDLE" COLSPAN="2" NOWRAP><B>'
-         . _("Plugin Options") . "</B></TD></TR>\n";
-    OptionSubmit( 'submit_folder' );
-?>         
+    /* Now just save the option as normal. */
+    save_option($option);
+}
 
 
-      </table>
-   </form>
+function save_option_sent_folder($option) {
+    global $data_dir, $username;
 
 
-   <?php do_hook('options_folders_bottom'); ?>
+    /* Set move to sent on or off. */
+    $sent_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
+    setPref($data_dir, $username, 'move_to_sent', $sent_on);
 
 
-    </td></tr>
-    </table>
+    /* Now just save the option as normal. */
+    save_option($option);
+}
 
 
-</td></tr>
-</table>
-</body></html>
+function save_option_draft_folder($option) {
+    global $data_dir, $username;
+
+    /* Set move to draft on or off. */
+    $draft_on = ($option->new_value == SMPREF_NONE ? SMPREF_OFF : SMPREF_ON);
+    setPref($data_dir, $username, 'save_as_draft', $draft_on);
+
+    /* Now just save the option as normal. */
+    save_option($option);
+}
+
+?>
index 34a7695d030a04bd3a7e7b062ccf821fe003c7e6..988ccb2c400b0b109d66927adde8f20dbffe311a 100644 (file)
@@ -1,41 +1,33 @@
 <?php
 <?php
-   /**
-    **  options_personal.php
-    **
-    **  Copyright (c) 1999-2000 The SquirrelMail development team
-    **  Licensed under the GNU GPL. For full terms see the file COPYING.
-    **
-    **  Displays all options relating to personal information
-    **
-    **  $Id$
-    **/
-
-   require_once('../src/validate.php');
-   require_once('../functions/display_messages.php');
-   require_once('../functions/imap.php');
-   require_once('../functions/array.php');
-   require_once('../functions/plugin.php');
-   require_once('../functions/options.php');
-   
-   displayPageHeader($color, 'None');
-
-   $full_name = getPref($data_dir, $username, 'full_name');
-   $reply_to = getPref($data_dir, $username, 'reply_to');
-   $email_address  = getPref($data_dir, $username, 'email_address'); 
 
 
-?>
-   <br>
-<table width=95% align=center border=0 cellpadding=2 cellspacing=0>
-<tr><td align="center" bgcolor="<?php echo $color[0] ?>">
-
-      <b><?php echo _("Options") . " - " . _("Personal Information"); ?></b>
-
-    <table width="100%" border="0" cellpadding="1" cellspacing="1">
-    <tr><td bgcolor="<?php echo $color[4] ?>" align="center">
-
-   <form name=f action="options.php" method=post><br>
-      <table width=100% cellpadding=2 cellspacing=0 border=0>
-<?php
+/**
+ * options_personal.php
+ *
+ * Copyright (c) 1999-2001 The SquirrelMail Development Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * Displays all options relating to personal information
+ *
+ * $Id$
+ */
+
+require_once('../functions/imap.php');
+require_once('../functions/array.php');
+/* Define the group constants for the personal options page. */
+define('SMOPT_GRP_CONTACT', 0);
+define('SMOPT_GRP_REPLY', 1);
+define('SMOPT_GRP_SIG', 2);
+
+/* Define the optpage load function for the personal options page. */
+function load_optpage_data_personal() {
+    global $data_dir, $username;
+    global $full_name, $reply_to, $email_address;
+
+    /* Set the values of some global variables. */
+    $full_name = getPref($data_dir, $username, 'full_name');
+    $reply_to = getPref($data_dir, $username, 'reply_to');
+    $email_address  = getPref($data_dir, $username, 'email_address'); 
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
 
     /* Build a simple array into which we will build options. */
     $optgrps = array();
@@ -44,9 +36,6 @@
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
     /******************************************************/
     /* LOAD EACH GROUP OF OPTIONS INTO THE OPTIONS ARRAY. */
     /******************************************************/
-    define('SMOPT_GRP_CONTACT', 0);
-    define('SMOPT_GRP_REPLY', 1);
-    define('SMOPT_GRP_SIG', 2);
 
     /*** Load the Contact Information Options into the array ***/
     $optgrps[SMOPT_GRP_CONTACT] = _("Name and Address Options");
 
     /*** Load the Contact Information Options into the array ***/
     $optgrps[SMOPT_GRP_CONTACT] = _("Name and Address Options");
         'caption' => _("Signature"),
         'type'    => SMOPT_TYPE_TEXTAREA,
         'refresh' => SMOPT_REFRESH_NONE,
         'caption' => _("Signature"),
         'type'    => SMOPT_TYPE_TEXTAREA,
         'refresh' => SMOPT_REFRESH_NONE,
-        'size'    => SMOPT_SIZE_MEDIUM
+        'size'    => SMOPT_SIZE_MEDIUM,
+        'save'    => 'save_option_signature'
     );
 
     );
 
-    /* Build and output the option groups. */
-    $option_groups = createOptionGroups($optgrps, $optvals);
-    printOptionGroups($option_groups);
-
-    do_hook('options_personal_inside');
-    OptionSubmit( 'submit_personal' );
-
-?>
-      </table>   
-</form>
+    /* Assemble all this together and return it as our result. */
+    $result = array(
+        'grps' => $optgrps,
+        'vals' => $optvals
+    );
+    return ($result);
+}
 
 
-   <?php do_hook('options_personal_bottom'); ?>
+/******************************************************************/
+/** Define any specialized save functions for this option page. ***/
+/******************************************************************/
 
 
-    </td></tr>
-    </table>
+function save_option_signature($option) {
+    global $data_dir, $username;
+    setSig($data_dir, $username, $option->new_value);
+}
 
 
-</td></tr>
-</table>
-</body></html>
+?>