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) - the output next to each radio button
24 * - assign (optional) - assign the output as an array to this variable
27 * {html_radios values=$ids output=$names}
28 * {html_radios values=$ids name='box' separator='<br>' output=$names}
29 * {html_radios values=$ids checked=$checked separator='<br>' output=$names}
31 * @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios}
32 * (Smarty online manual)
33 * @author Christopher Kvarme <christopher.kvarme@flashjab.com>
34 * @author credits to Monte Ohrt <monte at ohrt dot com>
39 * @uses smarty_function_escape_special_chars()
41 function smarty_function_html_radios($params, &$smarty)
43 require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
54 foreach($params as $_key => $_val) {
58 $
$_key = (string)$_val;
64 $smarty->trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING
);
66 $selected = (string)$_val;
75 $
$_key = (array)$_val;
80 $
$_key = array_values((array)$_val);
84 $smarty->trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING
);
85 $options = (array)$_val;
92 if(!is_array($_val)) {
93 $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
95 $smarty->trigger_error("html_radios: extra attribute '$_key' cannot be an array", E_USER_NOTICE
);
101 if (!isset($options) && !isset($values))
102 return ''; /* raise error here? */
104 $_html_result = array();
106 if (isset($options)) {
108 foreach ($options as $_key=>$_val)
109 $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
113 foreach ($values as $_i=>$_key) {
114 $_val = isset($output[$_i]) ?
$output[$_i] : '';
115 $_html_result[] = smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
120 if(!empty($params['assign'])) {
121 $smarty->assign($params['assign'], $_html_result);
123 return implode("\n",$_html_result);
128 function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator, $labels) {
131 $_id = smarty_function_escape_special_chars($name . '_' . $value);
132 $_output .= '<label for="' . $_id . '">';
134 $_output .= '<input type="radio" name="'
135 . smarty_function_escape_special_chars($name) . '" value="'
136 . smarty_function_escape_special_chars($value) . '"';
138 if ($labels) $_output .= ' id="' . $_id . '"';
140 if ($value==$selected) {
141 $_output .= ' checked="checked"';
143 $_output .= $extra . ' />' . $output;
144 if ($labels) $_output .= '</label>';
145 $_output .= $separator;