X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Foptions.php;h=8416b5f6e7e935c465c01faee70bfbb6855618d8;hb=ce68b76bfdef63cbc85d7bc46f7f1d538db9b4a4;hp=b3ade283e57e6ce67dd2424745efb50f02d12d0b;hpb=8bde22ae461acb970ed051720ad8f89aabbd2c28;p=squirrelmail.git diff --git a/functions/options.php b/functions/options.php index b3ade283..8416b5f6 100644 --- a/functions/options.php +++ b/functions/options.php @@ -3,12 +3,13 @@ /** * options.php * - * Copyright (c) 1999-2003 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 */ /**********************************************/ @@ -52,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. */ @@ -60,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,28 +74,34 @@ class SquirrelOption { var $value; var $new_value; var $possible_values; + var $htmlencoded=false; function SquirrelOption - ($name, $caption, $type, $refresh_level, $possible_values = '') { + ($name, $caption, $type, $refresh_level, $initial_value = '', $possible_values = '', $htmlencoded = false) { /* Set the basic stuff. */ $this->name = $name; $this->caption = $caption; $this->type = $type; $this->refresh_level = $refresh_level; $this->possible_values = $possible_values; + $this->htmlencoded = $htmlencoded; $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 ( !sqgetGlobalVar("new_$name", $this->new_value, SQ_POST ) ) { + if ( !sqgetGlobalVar("new_$name", $this->new_value, SQ_POST ) ) { $this->new_value = ''; } @@ -118,6 +128,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,13 +143,24 @@ 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; } function createHTMLWidget() { - global $javascript_on; + global $color; + + // Use new value if available + if (!empty($this->new_value)) { + $tempValue = $this->value; + $this->value = $this->new_value; + } /* Get the widget for this option type. */ switch ($this->type) { @@ -171,8 +197,13 @@ class SquirrelOption { . ''; } - /* Add the script for this option. */ - $result .= $this->script; + /* Add the "post script" for this option. */ + $result .= $this->post_script; + + // put correct value back if need be + if (!empty($this->new_value)) { + $this->value = $tempValue; + } /* Now, return the created widget. */ return ($result); @@ -197,33 +228,36 @@ class SquirrelOption { $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 .= '>' . ($this->htmlencoded ? $disp_value : 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); } @@ -231,30 +265,30 @@ class SquirrelOption { $selected = array(strtolower($this->value)); /* 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) { - if ( is_array($disp_value) ) { + if ( is_array($disp_value) ) { /* For folder list, we passed in the array of boxes.. */ $new_option = sqimap_mailbox_option_list(0, $selected, 0, $disp_value); } else { /* 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 .= "\n"; return ($result); } @@ -269,60 +303,63 @@ class SquirrelOption { default: $rows = 5; $cols = 50; } $result = ""; + . "cols=\"$cols\" $this->script>" + . htmlspecialchars($this->value) . "\n"; return ($result); } function createWidget_Integer() { - return ($this->createWidget_String()); - /* FIXME: Paul, weren't you going to make this browser safe - ie, if JS was off, or browser didn't support it? + global $javascript_on; // add onChange javascript handler to a regular string widget // which will strip out all non-numeric chars - return preg_replace('/>/', ' onChange="a=this.value; b=\'\'; ' - . 'for (i=0;i=\'0\' ' - . '&& a.charAt(i)<=\'9\') b += a.charAt(i); } ' - . 'this.value=b;">', $this->createWidget_String()); - */ + 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()); - - /* FIXME: Paul, weren't you going to make this browser safe - ie, if JS was off, or browser didn't support it? + + global $javascript_on; // add onChange javascript handler to a regular string widget - // which will strip out all non-numeric (period also OK) chars - return preg_replace('/>/', ' onChange="a=this.value; b=\'\'; ' - . 'for (i=0;i=\'0\' ' - . '&& a.charAt(i)<=\'9\') || a.charAt(i)==\'.\') ' - . 'b += a.charAt(i); } this.value=b;">' + // 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="checked"'; $no_chk = ''; } else { $yes_chk = ''; - $no_chk = ' checked'; + $no_chk = ' checked="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"; @@ -331,7 +368,8 @@ class SquirrelOption { function createWidget_Hidden() { $result = ''; + . '" value="' . htmlspecialchars($this->value) + . '" ' . $this->script . ' />'; return ($result); } @@ -374,7 +412,7 @@ function create_optmode_element($optmode) { function create_hidden_element($name, $value) { $result = ''; + . 'value="' . htmlspecialchars($value) . '" />'; return ($result); } @@ -392,30 +430,27 @@ function create_option_groups($optgrps, $optvals) { /* Create a new SquirrelOption for each set of option values. */ foreach ($optvals as $grpkey => $grpopts) { foreach ($grpopts as $optset) { - if (isset($optset['posvals'])) { - /* Create a new option with all values given. */ - $next_option = new SquirrelOption( - $optset['name'], - $optset['caption'], - $optset['type'], - $optset['refresh'], - $optset['posvals'] - ); - } else { - /* Create a new option with all but possible values given. */ - $next_option = new SquirrelOption( - $optset['name'], - $optset['caption'], - $optset['type'], - $optset['refresh'] - ); - } + /* Create a new option with all values given. */ + $next_option = new SquirrelOption( + $optset['name'], + $optset['caption'], + $optset['type'], + (isset($optset['refresh']) ? $optset['refresh'] : SMOPT_REFRESH_NONE), + (isset($optset['initial_value']) ? $optset['initial_value'] : ''), + (isset($optset['posvals']) ? $optset['posvals'] : ''), + (isset($optset['htmlencoded']) ? $optset['htmlencoded'] : false) + ); /* If provided, set the size for this option. */ if (isset($optset['size'])) { $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']); @@ -431,6 +466,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; } @@ -473,9 +513,9 @@ 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"; } -?> +// vim: et ts=4 +?> \ No newline at end of file