X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Foptions.php;h=de63a8f4a5798bcaa73cc93ee3088f069af86ec3;hb=fd28fa79b1ccbcc961472de73c39c66036baccdd;hp=057cb8c86b00801ca1981ec31bb911b506e5935b;hpb=6b4bd11ff9e790990d819c03a04eab069d52e0d6;p=squirrelmail.git diff --git a/functions/options.php b/functions/options.php index 057cb8c8..de63a8f4 100644 --- a/functions/options.php +++ b/functions/options.php @@ -3,12 +3,13 @@ /** * options.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2004 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Functions needed to display the options pages. * - * $Id$ + * @version $Id$ + * @package squirrelmail */ /**********************************************/ @@ -18,12 +19,13 @@ /* Define constants for the various option types. */ define('SMOPT_TYPE_STRING', 0); define('SMOPT_TYPE_STRLIST', 1); -define('SMOPT_TYPE_textarea', 2); +define('SMOPT_TYPE_TEXTAREA', 2); define('SMOPT_TYPE_INTEGER', 3); define('SMOPT_TYPE_FLOAT', 4); define('SMOPT_TYPE_BOOLEAN', 5); -define('SMOPT_TYPE_hidden', 6); +define('SMOPT_TYPE_HIDDEN', 6); define('SMOPT_TYPE_COMMENT', 7); +define('SMOPT_TYPE_FLDRLIST', 8); /* Define constants for the options refresh levels. */ define('SMOPT_REFRESH_NONE', 0); @@ -51,6 +53,7 @@ define('SMOPT_SAVE_NOOP', 'save_option_noop'); * Also, I'd like to ask that people leave this alone (mostly :) until * I get it a little further along. That should only be a day or two or * three. I will remove this message when it is ready for primetime usage. + * @package squirrelmail */ class SquirrelOption { /* The basic stuff. */ @@ -61,6 +64,7 @@ class SquirrelOption { var $size; var $comment; var $script; + var $post_script; /* The name of the Save Function for this option. */ var $save_function; @@ -71,7 +75,7 @@ class SquirrelOption { var $possible_values; function SquirrelOption - ($name, $caption, $type, $refresh_level, $possible_values = '') { + ($name, $caption, $type, $refresh_level, $initial_value = '', $possible_values = '') { /* Set the basic stuff. */ $this->name = $name; $this->caption = $caption; @@ -81,23 +85,24 @@ class SquirrelOption { $this->size = SMOPT_SIZE_MEDIUM; $this->comment = ''; $this->script = ''; + $this->post_script = ''; /* Check for a current value. */ - if (isset($GLOBALS[$name])) { + if (!empty($initial_value)) { + $this->value = $initial_value; + } else if (isset($GLOBALS[$name])) { $this->value = $GLOBALS[$name]; } else { $this->value = ''; } /* Check for a new value. */ - if (isset($GLOBALS["new_$name"])) { - $this->new_value = $GLOBALS["new_$name"]; - } else { + if ( !sqgetGlobalVar("new_$name", $this->new_value, SQ_POST ) ) { $this->new_value = ''; } /* Set the default save function. */ - if (($type != SMOPT_TYPE_hidden) && ($type != SMOPT_TYPE_COMMENT)) { + if (($type != SMOPT_TYPE_HIDDEN) && ($type != SMOPT_TYPE_COMMENT)) { $this->save_function = SMOPT_SAVE_DEFAULT; } else { $this->save_function = SMOPT_SAVE_NOOP; @@ -129,6 +134,11 @@ class SquirrelOption { $this->script = $script; } + /* Set the "post script" for this option. */ + function setPostScript($post_script) { + $this->post_script = $post_script; + } + /* Set the save function for this option. */ function setSaveFunction($save_function) { $this->save_function = $save_function; @@ -145,7 +155,7 @@ class SquirrelOption { case SMOPT_TYPE_STRLIST: $result = $this->createWidget_StrList(); break; - case SMOPT_TYPE_textarea: + case SMOPT_TYPE_TEXTAREA: $result = $this->createWidget_TextArea(); break; case SMOPT_TYPE_INTEGER: @@ -157,21 +167,24 @@ class SquirrelOption { case SMOPT_TYPE_BOOLEAN: $result = $this->createWidget_Boolean(); break; - case SMOPT_TYPE_hidden: + case SMOPT_TYPE_HIDDEN: $result = $this->createWidget_Hidden(); break; case SMOPT_TYPE_COMMENT: $result = $this->createWidget_Comment(); break; + case SMOPT_TYPE_FLDRLIST: + $result = $this->createWidget_FolderList(); + break; default: $result = '' . sprintf(_("Option Type '%s' Not Found"), $this->type) . ''; } - /* Add the script for this option. */ - $result .= $this->script; - + /* Add the "post script" for this option. */ + $result .= $this->post_script; + /* Now, return the created widget. */ return ($result); } @@ -195,13 +208,13 @@ class SquirrelOption { $width = 25; } - $result = "name\" value=\"$this->value\" size=\"$width\">"; + $result = "name\" value=\"$this->value\" size=\"$width\" $this->script>"; return ($result); } function createWidget_StrList() { /* Begin the select tag. */ - $result = "name\" $this->script>"; /* Add each possible value to the select list. */ foreach ($this->possible_values as $real_value => $disp_value) { @@ -210,7 +223,7 @@ class SquirrelOption { /* If this value is the current value, select it. */ if ($real_value == $this->value) { - $new_option .= ' selected'; + $new_option .= ' selected=""'; } /* Add the display value to our option string. */ @@ -225,6 +238,38 @@ class SquirrelOption { return ($result); } + function createWidget_FolderList() { + $selected = array(strtolower($this->value)); + + /* Begin the select tag. */ + $result = "'; + return ($result); + } + + function createWidget_TextArea() { switch ($this->size) { case SMOPT_SIZE_TINY: $rows = 3; $cols = 10; break; @@ -235,37 +280,62 @@ class SquirrelOption { default: $rows = 5; $cols = 50; } $result = ""; + . "cols=\"$cols\" $this->script>$this->value"; return ($result); } function createWidget_Integer() { - return ($this->createWidget_String()); + + global $javascript_on; + + // add onChange javascript handler to a regular string widget + // which will strip out all non-numeric chars + if ($javascript_on) + return preg_replace('/>/', ' onChange="origVal=this.value; newVal=\'\'; ' + . 'for (i=0;i=\'0\' ' + . '&& origVal.charAt(i)<=\'9\') newVal += origVal.charAt(i); } ' + . 'this.value=newVal;">', $this->createWidget_String()); + else + return $this->createWidget_String(); } function createWidget_Float() { - return ($this->createWidget_String()); + + global $javascript_on; + + // add onChange javascript handler to a regular string widget + // which will strip out all non-numeric (period also OK) chars + if ($javascript_on) + return preg_replace('/>/', ' onChange="origVal=this.value; newVal=\'\'; ' + . 'for (i=0;i=\'0\' ' + . '&& origVal.charAt(i)<=\'9\') || origVal.charAt(i)==\'.\') ' + . 'newVal += origVal.charAt(i); } this.value=newVal;">' + , $this->createWidget_String()); + else + return $this->createWidget_String(); } function createWidget_Boolean() { /* Do the whole current value thing. */ if ($this->value != SMPREF_NO) { - $yes_chk = ' checked'; + $yes_chk = ' checked=""'; $no_chk = ''; } else { $yes_chk = ''; - $no_chk = ' checked'; + $no_chk = ' checked=""'; } /* Build the yes choice. */ - $yes_option = ' " - . _("Yes"); + $yes_option = 'script . '> ' + . ''; /* Build the no choice. */ - $no_option = ' " - . _("No"); + $no_option = 'script . '> ' + . ''; /* Build and return the combined "boolean widget". */ $result = "$yes_option    $no_option"; @@ -274,7 +344,7 @@ class SquirrelOption { function createWidget_Hidden() { $result = ''; + . '" value="' . $this->value . '" ' . $this->script . '>'; return ($result); } @@ -289,16 +359,17 @@ class SquirrelOption { } function changed() { - return ($this->value !== $this->new_value); + return ($this->value != $this->new_value); } } function save_option($option) { - global $data_dir, $username; + if ( !sqgetGlobalVar('username', $username, SQ_SESSION ) ) { + /* Can't save the pref if we don't have the username */ + return; + } + global $data_dir; setPref($data_dir, $username, $option->name, $option->new_value); - - /* I do not know if this next line does any good. */ - $GLOBALS[$option->name] = $option->new_value; } function save_option_noop($option) { @@ -340,7 +411,8 @@ function create_option_groups($optgrps, $optvals) { $optset['name'], $optset['caption'], $optset['type'], - $optset['refresh'], + (isset($optset['refresh']) ? $optset['refresh'] : SMOPT_REFRESH_NONE), + (isset($optset['initial_value']) ? $optset['initial_value'] : ''), $optset['posvals'] ); } else { @@ -349,7 +421,8 @@ function create_option_groups($optgrps, $optvals) { $optset['name'], $optset['caption'], $optset['type'], - $optset['refresh'] + (isset($optset['refresh']) ? $optset['refresh'] : SMOPT_REFRESH_NONE), + (isset($optset['initial_value']) ? $optset['initial_value'] : '') ); } @@ -373,6 +446,11 @@ function create_option_groups($optgrps, $optvals) { $next_option->setScript($optset['script']); } + /* If provided, set the "post script" for this option. */ + if (isset($optset['post_script'])) { + $next_option->setPostScript($optset['post_script']); + } + /* Add this option to the option array. */ $result[$grpkey]['options'][] = $next_option; } @@ -396,7 +474,7 @@ function print_option_groups($option_groups) { /* Print each option in this option group. */ foreach ($next_optgrp['options'] as $option) { - if ($option->type != SMOPT_TYPE_hidden) { + if ($option->type != SMOPT_TYPE_HIDDEN) { echo html_tag( 'tr', "\n". html_tag( 'td', $option->caption . ':', 'right' ,'', 'valign="middle"' ) . html_tag( 'td', $option->createHTMLWidget(), 'left' ) @@ -415,8 +493,7 @@ function print_option_groups($option_groups) { function OptionSubmit( $name ) { echo html_tag( 'tr', - html_tag( 'td', ' ', 'left', '', 'colspan="2"' ) . - html_tag( 'td', '', 'left', '', 'colspan="2"' ) + html_tag( 'td', '    ', 'right', '', 'colspan="2"' ) ) . "\n"; }