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

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {html_radios} function plugin
  9.  *
  10.  * File:       function.html_radios.php<br>
  11.  * Type:       function<br>
  12.  * Name:       html_radios<br>
  13.  * Date:       24.Feb.2003<br>
  14.  * Purpose:    Prints out a list of radio input types<br>
  15.  * Input:<br>
  16.  *           - name       (optional) - string default "radio"
  17.  *           - values     (required) - array
  18.  *           - options    (optional) - associative array
  19.  *           - checked    (optional) - array default not set
  20.  *           - separator  (optional) - ie <br> or &nbsp;
  21.  *           - output     (optional) - the output next to each radio button
  22.  *           - assign     (optional) - assign the output as an array to this variable
  23.  * Examples:
  24.  * <pre>
  25.  * {html_radios values=$ids output=$names}
  26.  * {html_radios values=$ids name='box' separator='<br>' output=$names}
  27.  * {html_radios values=$ids checked=$checked separator='<br>' output=$names}
  28.  * </pre>
  29.  * @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios}
  30.  *      (Smarty online manual)
  31.  * @author     Christopher Kvarme <christopher.kvarme@flashjab.com>
  32.  * @author credits to Monte Ohrt <monte@ispi.net>
  33.  * @version    1.0
  34.  * @param array
  35.  * @param Smarty
  36.  * @return string
  37.  * @uses smarty_function_escape_special_chars()
  38.  */
  39. function smarty_function_html_radios($params, &$smarty)
  40. {
  41.     require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
  42.    
  43.     $name = 'radio';
  44.     $values = null;
  45.     $options = null;
  46.     $selected = null;
  47.     $separator = '';
  48.     $labels = true;
  49.     $output = null;
  50.     $extra = '';
  51.     foreach($params as $_key => $_val) {
  52.         switch($_key) {
  53.             case 'name':
  54.             case 'separator':
  55.                 $$_key = (string)$_val;
  56.                 break;
  57.             case 'checked':
  58.             case 'selected':
  59.                 if(is_array($_val)) {
  60.                     $smarty->trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING);
  61.                 } else {
  62.                     $selected = (string)$_val;
  63.                 }
  64.                 break;
  65.             case 'labels':
  66.                 $$_key = (bool)$_val;
  67.                 break;
  68.             case 'options':
  69.                 $$_key = (array)$_val;
  70.                 break;
  71.             case 'values':
  72.             case 'output':
  73.                 $$_key = array_values((array)$_val);
  74.                 break;
  75.             case 'radios':
  76.                 $smarty->trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING);
  77.                 $options = (array)$_val;
  78.                 break;
  79.             case 'assign':
  80.                 break;
  81.             default:
  82.                 if(!is_array($_val)) {
  83.                     $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
  84.                 } else {
  85.                     $smarty->trigger_error("html_radios: extra attribute '$_key' cannot be an array", E_USER_NOTICE);
  86.                 }
  87.                 break;
  88.         }
  89.     }
  90.     if (!isset($options) && !isset($values))
  91.         return ''; /* raise error here? */
  92.     $_html_result = array();
  93.     if (isset($options) && is_array($options)) {
  94.         foreach ((array)$options as $_key=>$_val)
  95.             $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
  96.     } else {
  97.         foreach ((array)$values as $_i=>$_key) {
  98.             $_val = isset($output[$_i]) ? $output[$_i] : '';
  99.             $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
  100.         }
  101.     }
  102.     if(!empty($params['assign'])) {
  103.         $smarty->assign($params['assign'], $_html_result);
  104.     } else {
  105.         return implode("n",$_html_result);
  106.     }
  107. }
  108. function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels) {
  109.     $_output = '';
  110.     if ($labels) $_output .= '<label>';
  111.     $_output .= '<input type="radio" name="'
  112.         . smarty_function_escape_special_chars($name) . '" value="'
  113.         . smarty_function_escape_special_chars($value) . '"';
  114.     if ($value==$selected) {
  115.         $_output .= ' checked="checked"';
  116.     }
  117.     $_output .= $extra . ' />' . $output;
  118.     if ($labels) $_output .= '</label>';
  119.     $_output .=  $separator;
  120.     return $_output;
  121. }
  122. ?>