function.html_options.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:4k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {html_options} function plugin
  9.  *
  10.  * Type:     function<br>
  11.  * Name:     html_options<br>
  12.  * Input:<br>
  13.  *           - name       (optional) - string default "select"
  14.  *           - values     (required if no options supplied) - array
  15.  *           - options    (required if no values supplied) - associative array
  16.  *           - selected   (optional) - string default not set
  17.  *           - output     (required if not options supplied) - array
  18.  * Purpose:  Prints the list of <option> tags generated from
  19.  *           the passed parameters
  20.  * @link http://smarty.php.net/manual/en/language.function.html.options.php {html_image}
  21.  *      (Smarty online manual)
  22.  * @param array
  23.  * @param Smarty
  24.  * @return string
  25.  * @uses smarty_function_escape_special_chars()
  26.  */
  27. function smarty_function_html_options($params, &$smarty)
  28. {
  29.     require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
  30.     
  31.     $name = null;
  32.     $values = null;
  33.     $options = null;
  34.     $selected = array();
  35.     $output = null;
  36.     
  37.     $extra = '';
  38.     
  39.     foreach($params as $_key => $_val) {
  40.         switch($_key) {
  41.             case 'name':
  42.                 $$_key = (string)$_val;
  43.                 break;
  44.             
  45.             case 'options':
  46.                 $$_key = (array)$_val;
  47.                 break;
  48.                 
  49.             case 'values':
  50.             case 'output':
  51.                 $$_key = array_values((array)$_val);
  52.                 break;
  53.             case 'selected':
  54.                 $$_key = array_map('strval', array_values((array)$_val));
  55.                 break;
  56.                 
  57.             default:
  58.                 if(!is_array($_val)) {
  59.                     $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
  60.                 } else {
  61.                     $smarty->trigger_error("html_options: extra attribute '$_key' cannot be an array", E_USER_NOTICE);
  62.                 }
  63.                 break;
  64.         }
  65.     }
  66.     if (!isset($options) && !isset($values))
  67.         return ''; /* raise error here? */
  68.     $_html_result = '';
  69.     if (is_array($options)) {
  70.         
  71.         foreach ($options as $_key=>$_val)
  72.             $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected);
  73.     } else {
  74.         
  75.         foreach ((array)$values as $_i=>$_key) {
  76.             $_val = isset($output[$_i]) ? $output[$_i] : '';
  77.             $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected);
  78.         }
  79.     }
  80.     if(!empty($name)) {
  81.         $_html_result = '<select name="' . $name . '"' . $extra . '>' . "n" . $_html_result . '</select>' . "n";
  82.     }
  83.     return $_html_result;
  84. }
  85. function smarty_function_html_options_optoutput($key, $value, $selected) {
  86.     if(!is_array($value)) {
  87.         $_html_result = '<option label="' . smarty_function_escape_special_chars($value) . '" value="' .
  88.             smarty_function_escape_special_chars($key) . '"';
  89.         if (in_array((string)$key, $selected))
  90.             $_html_result .= ' selected="selected"';
  91.         $_html_result .= '>' . smarty_function_escape_special_chars($value) . '</option>' . "n";
  92.     } else {
  93.         $_html_result = smarty_function_html_options_optgroup($key, $value, $selected);
  94.     }
  95.     return $_html_result;
  96. }
  97. function smarty_function_html_options_optgroup($key, $values, $selected) {
  98.     $optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "n";
  99.     foreach ($values as $key => $value) {
  100.         $optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected);
  101.     }
  102.     $optgroup_html .= "</optgroup>n";
  103.     return $optgroup_html;
  104. }
  105. /* vim: set expandtab: */
  106. ?>