10 * Smarty {html_checkboxes} function plugin
12 * File: function.html_checkboxes.php<br>
14 * Name: html_checkboxes<br>
15 * Date: 24.Feb.2003<br>
16 * Purpose: Prints out a list of checkbox input types<br>
18 * - name (optional) - string default "checkbox"
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_checkboxes values=$ids output=$names}
27 * {html_checkboxes values=$ids name='box' separator='<br>' output=$names}
28 * {html_checkboxes values=$ids checked=$checked separator='<br>' output=$names}
30 * @link http://smarty.php.net/manual/en/language.function.html.checkboxes.php {html_checkboxes}
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_checkboxes($params, &$smarty)
42 require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
54 foreach($params as $_key => $_val) {
66 $
$_key = (array)$_val;
71 $
$_key = array_values((array)$_val);
76 $selected = array_map('strval', array_values((array)$_val));
80 $smarty->trigger_error('html_checkboxes: the use of the "checkboxes" attribute is deprecated, use "options" instead', E_USER_WARNING
);
81 $options = (array)$_val;
85 if(!is_array($_val)) {
86 $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
88 $smarty->trigger_error("html_checkboxes: extra attribute '$_key' cannot be an array", E_USER_NOTICE
);
94 if (!isset($options) && !isset($values))
95 return ''; /* raise error here? */
97 settype($selected, 'array');
100 if (is_array($options)) {
102 foreach ($options as $_key=>$_val)
103 $_html_result .= smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
107 foreach ($values as $_i=>$_key) {
108 $_val = isset($output[$_i]) ?
$output[$_i] : '';
109 $_html_result .= smarty_function_html_checkboxes_output($name, $_key, $_val, $selected, $extra, $separator, $labels);
114 return $_html_result;
118 function smarty_function_html_checkboxes_output($name, $value, $output, $selected, $extra, $separator, $labels) {
120 if ($labels) $_output .= '<label>';
121 $_output .= '<input type="checkbox" name="'
122 . smarty_function_escape_special_chars($name) . '[]" value="'
123 . smarty_function_escape_special_chars($value) . '"';
125 if (in_array((string)$value, $selected)) {
126 $_output .= ' checked="checked"';
128 $_output .= $extra . ' />' . $output;
129 if ($labels) $_output .= '</label>';
130 $_output .= $separator . "\n";