X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Foptions.php;h=7fadcbc6165a23f05cbd16d95928765fa1820ed1;hp=d4aa8bc68d525e9be4b2c6d5dce8000a1cffca2c;hb=1ef64acb8b3de64fdadb623b94b0d25d1b219dff;hpb=15e6162eacc97158393bc75aed3afeb7b19c24a6 diff --git a/functions/options.php b/functions/options.php index d4aa8bc6..7fadcbc6 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 */ /**********************************************/ @@ -24,6 +25,7 @@ define('SMOPT_TYPE_FLOAT', 4); define('SMOPT_TYPE_BOOLEAN', 5); 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); @@ -36,6 +38,7 @@ define('SMOPT_SIZE_SMALL', 1); define('SMOPT_SIZE_MEDIUM', 2); define('SMOPT_SIZE_LARGE', 3); define('SMOPT_SIZE_HUGE', 4); +define('SMOPT_SIZE_NORMAL', 5); define('SMOPT_SAVE_DEFAULT', 'save_option'); define('SMOPT_SAVE_NOOP', 'save_option_noop'); @@ -50,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. */ @@ -58,8 +62,10 @@ class SquirrelOption { var $type; var $refresh_level; var $size; + var $trailing_text; var $comment; var $script; + var $post_script; /* The name of the Save Function for this option. */ var $save_function; @@ -70,7 +76,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; @@ -78,20 +84,22 @@ class SquirrelOption { $this->refresh_level = $refresh_level; $this->possible_values = $possible_values; $this->size = SMOPT_SIZE_MEDIUM; + $this->trailing_text = ''; $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 = ''; } @@ -118,6 +126,11 @@ class SquirrelOption { $this->size = $size; } + /* Set the trailing_text for this option. */ + function setTrailingText($trailing_text) { + $this->trailing_text = $trailing_text; + } + /* Set the comment for this option. */ function setComment($comment) { $this->comment = $comment; @@ -128,6 +141,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; @@ -162,59 +180,106 @@ class SquirrelOption { case SMOPT_TYPE_COMMENT: $result = $this->createWidget_Comment(); break; + case SMOPT_TYPE_FLDRLIST: + $result = $this->createWidget_FolderList(); + break; default: - $result = '' + $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); } function createWidget_String() { switch ($this->size) { - case SMOPT_SIZE_TINY: $width = 5; break; - case SMOPT_SIZE_SMALL: $width = 12; break; - case SMOPT_SIZE_LARGE: $width = 38; break; - case SMOPT_SIZE_HUGE: $width = 50; break; + case SMOPT_SIZE_TINY: + $width = 5; + break; + case SMOPT_SIZE_SMALL: + $width = 12; + break; + case SMOPT_SIZE_LARGE: + $width = 38; + break; + case SMOPT_SIZE_HUGE: + $width = 50; + break; case SMOPT_SIZE_NORMAL: - default: $width = 25; + default: + $width = 25; } - $result = "name\" VALUE=\"$this->value\" SIZE=\"$width\">"; + $result = "name\" value=\"" . + htmlspecialchars($this->value) . + "\" size=\"$width\" $this->script />$this->trailing_text\n"; return ($result); } function createWidget_StrList() { /* Begin the select tag. */ - $result = "name\" $this->script>\n"; /* Add each possible value to the select list. */ foreach ($this->possible_values as $real_value => $disp_value) { /* Start the next new option string. */ - $new_option = ""; + $new_option .= '>' . htmlspecialchars($disp_value) . "\n"; /* And add the new option string to our select tag. */ $result .= $new_option; } /* Close the select tag and return our happy result. */ - $result .= ''; + $result .= "$this->trailing_text\n"; + return ($result); + } + + function createWidget_FolderList() { + $selected = array(strtolower($this->value)); + + /* Begin the select tag. */ + $result = "\n"; return ($result); } + function createWidget_TextArea() { switch ($this->size) { case SMOPT_SIZE_TINY: $rows = 3; $cols = 10; break; @@ -224,38 +289,64 @@ class SquirrelOption { case SMOPT_SIZE_NORMAL: default: $rows = 5; $cols = 50; } - $result = ""; + $result = "\n"; 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"; @@ -263,8 +354,9 @@ class SquirrelOption { } function createWidget_Hidden() { - $result = ''; + $result = 'script . ' />'; return ($result); } @@ -279,16 +371,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) { @@ -304,9 +397,9 @@ function create_optmode_element($optmode) { } function create_hidden_element($name, $value) { - $result = ''; + $result = ''; return ($result); } @@ -330,7 +423,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 { @@ -339,7 +433,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'] : '') ); } @@ -348,6 +443,11 @@ function create_option_groups($optgrps, $optvals) { $next_option->setSize($optset['size']); } + /* If provided, set the trailing_text for this option. */ + if (isset($optset['trailing_text'])) { + $next_option->setTrailingText($optset['trailing_text']); + } + /* If provided, set the comment for this option. */ if (isset($optset['comment'])) { $next_option->setComment($optset['comment']); @@ -363,6 +463,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; } @@ -377,32 +482,37 @@ function print_option_groups($option_groups) { foreach ($option_groups as $next_optgrp) { /* If it is not blank, print the name for this option group. */ if ($next_optgrp['name'] != '') { - echo '' - . $next_optgrp['name'] - . "\n"; - } - - /* Print each option in this option group. */ + echo html_tag( 'tr', "\n". + html_tag( 'td', + '' . $next_optgrp['name'] . '' , + 'center' ,'', 'valign="middle" colspan="2" nowrap' ) + ) ."\n"; + } + + /* Print each option in this option group. */ foreach ($next_optgrp['options'] as $option) { if ($option->type != SMOPT_TYPE_HIDDEN) { - echo "\n"; - echo ' ' - . $option->caption . ":\n"; - echo ' ' . $option->createHTMLWidget() . "\n"; - echo "\n"; + echo html_tag( 'tr', "\n". + html_tag( 'td', $option->caption . ':', 'right' ,'', 'valign="middle"' ) . + html_tag( 'td', $option->createHTMLWidget(), 'left' ) + ) ."\n"; } else { echo $option->createHTMLWidget(); } } - - /* Print an empty row after this option group. */ - echo " \n"; + + /* Print an empty row after this option group. */ + echo html_tag( 'tr', + html_tag( 'td', ' ', 'left', '', 'colspan="2"' ) + ) . "\n"; } } function OptionSubmit( $name ) { - echo ' ' . - ''; + echo html_tag( 'tr', + html_tag( 'td', '    ', 'right', '', 'colspan="2"' ) + ) . "\n"; } +// vim: et ts=4 ?>