10 * Smarty {html_radios} function plugin
12 * File: function.html_radios.php<br>
14 * Name: html_radios<br>
15 * Date: 24.Feb.2003<br>
16 * Purpose: Prints out a list of radio input types<br>
18 * - name (optional) - string default "radio"
19 * - values (required) - array
20 * - options (optional) - associative array
21 * - checked (optional) - array default not set
22 * - separator (optional) - ie <br> or
23 * - output (optional) - without this one the buttons don't have names
26 * {html_radios values=$ids output=$names}
27 * {html_radios values=$ids name='box' separator='<br>' output=$names}
28 * {html_radios values=$ids checked=$checked separator='<br>' output=$names}
30 * @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios}
31 * (Smarty online manual)
32 * @author Christopher Kvarme <christopher.kvarme@flashjab.com>
33 * @author credits to Monte Ohrt <monte@ispi.net>
38 * @uses smarty_function_escape_special_chars()
40 function smarty_function_html_radios($params, &$smarty)
42 require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
53 foreach($params as $_key => $_val) {
57 $
$_key = (string)$_val;
63 $smarty->trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING
);
65 $selected = (string)$_val;
74 $
$_key = (array)$_val;
79 $
$_key = array_values((array)$_val);
83 $smarty->trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING
);
84 $options = (array)$_val;
89 if(!is_array($_val)) {
90 $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
92 $smarty->trigger_error("html_radios: extra attribute '$_key' cannot be an array", E_USER_NOTICE
);
98 if (!isset($options) && !isset($values))
99 return ''; /* raise error here? */
103 if (isset($options) && is_array($options)) {
105 foreach ((array)$options as $_key=>$_val)
106 $_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
110 foreach ((array)$values as $_i=>$_key) {
111 $_val = isset($output[$_i]) ?
$output[$_i] : '';
112 $_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
117 return $_html_result;
121 function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels) {
123 if ($labels) $_output .= '<label>';
124 $_output .= '<input type="radio" name="'
125 . smarty_function_escape_special_chars($name) . '" value="'
126 . smarty_function_escape_special_chars($value) . '"';
128 if ($value==$selected) {
129 $_output .= ' checked="checked"';
131 $_output .= $extra . ' />' . $output;
132 if ($labels) $_output .= '</label>';
133 $_output .= $separator . "\n";