| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * Smarty plugin | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * @subpackage PluginsFunction | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * Smarty {html_radios} function plugin | 
					
						
							| 
									
										
										
										
											2017-11-11 07:11:33 +01:00
										 |  |  |  * File:       function.html_radios.php | 
					
						
							|  |  |  |  * Type:       function
 | 
					
						
							|  |  |  |  * Name:       html_radios | 
					
						
							|  |  |  |  * Date:       24.Feb.2003 | 
					
						
							|  |  |  |  * Purpose:    Prints out a list of radio input types | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * Params: | 
					
						
							| 
									
										
										
										
											2017-11-11 07:11:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * - name       (optional) - string default "radio" | 
					
						
							|  |  |  |  * - values     (required) - array | 
					
						
							|  |  |  |  * - options    (required) - associative array | 
					
						
							|  |  |  |  * - checked    (optional) - array default not set | 
					
						
							|  |  |  |  * - separator  (optional) - ie <br> or   | 
					
						
							|  |  |  |  * - output     (optional) - the output next to each radio button | 
					
						
							|  |  |  |  * - assign     (optional) - assign the output as an array to this variable | 
					
						
							| 
									
										
										
										
											2011-11-16 11:28:35 +00:00
										 |  |  |  * - escape     (optional) - escape the content (not value), defaults to true | 
					
						
							| 
									
										
										
										
											2017-11-11 07:11:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * Examples: | 
					
						
							| 
									
										
										
										
											2017-11-11 07:11:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * {html_radios values=$ids output=$names} | 
					
						
							|  |  |  |  * {html_radios values=$ids name='box' separator='<br>' output=$names} | 
					
						
							|  |  |  |  * {html_radios values=$ids checked=$checked separator='<br>' output=$names} | 
					
						
							| 
									
										
										
										
											2017-11-11 07:11:33 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @link    http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios} | 
					
						
							|  |  |  |  *          (Smarty online manual) | 
					
						
							|  |  |  |  * @author  Christopher Kvarme <christopher.kvarme@flashjab.com> | 
					
						
							|  |  |  |  * @author  credits to Monte Ohrt <monte at ohrt dot com> | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  * @version 1.0 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @param array                    $params   parameters | 
					
						
							|  |  |  |  * @param Smarty_Internal_Template $template template object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * @return string | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |  * @uses    smarty_function_escape_special_chars() | 
					
						
							| 
									
										
										
										
											2018-03-28 07:35:52 +02:00
										 |  |  |  * @throws \SmartyException | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-03-28 07:35:52 +02:00
										 |  |  | function smarty_function_html_radios($params, Smarty_Internal_Template $template) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |     $template->_checkPlugins( | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  |         array( | 
					
						
							|  |  |  |             array( | 
					
						
							|  |  |  |                 'function' => 'smarty_function_escape_special_chars', | 
					
						
							|  |  |  |                 'file'     => SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php' | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |     ); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $name = 'radio'; | 
					
						
							|  |  |  |     $values = null; | 
					
						
							|  |  |  |     $options = null; | 
					
						
							|  |  |  |     $selected = null; | 
					
						
							|  |  |  |     $separator = ''; | 
					
						
							| 
									
										
										
										
											2011-11-16 11:28:35 +00:00
										 |  |  |     $escape = true; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $labels = true; | 
					
						
							|  |  |  |     $label_ids = false; | 
					
						
							|  |  |  |     $output = null; | 
					
						
							|  |  |  |     $extra = ''; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     foreach ($params as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         switch ($_key) { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |             case 'name': | 
					
						
							|  |  |  |             case 'separator': | 
					
						
							|  |  |  |                 $$_key = (string)$_val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'checked': | 
					
						
							|  |  |  |             case 'selected': | 
					
						
							|  |  |  |                 if (is_array($_val)) { | 
					
						
							|  |  |  |                     trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING); | 
					
						
							|  |  |  |                 } elseif (is_object($_val)) { | 
					
						
							|  |  |  |                     if (method_exists($_val, '__toString')) { | 
					
						
							|  |  |  |                         $selected = smarty_function_escape_special_chars((string)$_val->__toString()); | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         trigger_error( | 
					
						
							|  |  |  |                             'html_radios: selected attribute is an object of class \'' . get_class($_val) . | 
					
						
							|  |  |  |                             '\' without __toString() method', | 
					
						
							|  |  |  |                             E_USER_NOTICE | 
					
						
							|  |  |  |                         ); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                     $selected = (string)$_val; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             case 'escape': | 
					
						
							|  |  |  |             case 'labels': | 
					
						
							|  |  |  |             case 'label_ids': | 
					
						
							|  |  |  |                 $$_key = (bool)$_val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'options': | 
					
						
							|  |  |  |                 $$_key = (array)$_val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'values': | 
					
						
							|  |  |  |             case 'output': | 
					
						
							|  |  |  |                 $$_key = array_values((array)$_val); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'radios': | 
					
						
							|  |  |  |                 trigger_error( | 
					
						
							|  |  |  |                     'html_radios: the use of the "radios" attribute is deprecated, use "options" instead', | 
					
						
							|  |  |  |                     E_USER_WARNING | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |                 $options = (array)$_val; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'assign': | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'strict': | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             case 'disabled': | 
					
						
							|  |  |  |             case 'readonly': | 
					
						
							|  |  |  |                 if (!empty($params[ 'strict' ])) { | 
					
						
							|  |  |  |                     if (!is_scalar($_val)) { | 
					
						
							|  |  |  |                         trigger_error( | 
					
						
							|  |  |  |                             "html_options: {$_key} attribute must be a scalar, only boolean true or string '$_key' will actually add the attribute", | 
					
						
							|  |  |  |                             E_USER_NOTICE | 
					
						
							|  |  |  |                         ); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if ($_val === true || $_val === $_key) { | 
					
						
							|  |  |  |                         $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_key) . '"'; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2012-11-13 18:31:48 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |             // omit break; to fall through!
 | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  |             // no break
 | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |             default: | 
					
						
							|  |  |  |                 if (!is_array($_val)) { | 
					
						
							|  |  |  |                     $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     trigger_error("html_radios: extra attribute '{$_key}' cannot be an array", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     if (!isset($options) && !isset($values)) { | 
					
						
							|  |  |  |         /* raise error here? */ | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         return ''; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $_html_result = array(); | 
					
						
							|  |  |  |     if (isset($options)) { | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |         foreach ($options as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |             $_html_result[] = | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |                 smarty_function_html_radios_output( | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                     $name, | 
					
						
							|  |  |  |                     $_key, | 
					
						
							|  |  |  |                     $_val, | 
					
						
							|  |  |  |                     $selected, | 
					
						
							|  |  |  |                     $extra, | 
					
						
							|  |  |  |                     $separator, | 
					
						
							|  |  |  |                     $labels, | 
					
						
							|  |  |  |                     $label_ids, | 
					
						
							|  |  |  |                     $escape | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         foreach ($values as $_i => $_key) { | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |             $_val = isset($output[ $_i ]) ? $output[ $_i ] : ''; | 
					
						
							|  |  |  |             $_html_result[] = | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |                 smarty_function_html_radios_output( | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                     $name, | 
					
						
							|  |  |  |                     $_key, | 
					
						
							|  |  |  |                     $_val, | 
					
						
							|  |  |  |                     $selected, | 
					
						
							|  |  |  |                     $extra, | 
					
						
							|  |  |  |                     $separator, | 
					
						
							|  |  |  |                     $labels, | 
					
						
							|  |  |  |                     $label_ids, | 
					
						
							|  |  |  |                     $escape | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |                 ); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |     if (!empty($params[ 'assign' ])) { | 
					
						
							|  |  |  |         $template->assign($params[ 'assign' ], $_html_result); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         return implode("\n", $_html_result); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-26 10:25:41 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @param $name | 
					
						
							|  |  |  |  * @param $value | 
					
						
							|  |  |  |  * @param $output | 
					
						
							|  |  |  |  * @param $selected | 
					
						
							|  |  |  |  * @param $extra | 
					
						
							|  |  |  |  * @param $separator | 
					
						
							|  |  |  |  * @param $labels | 
					
						
							|  |  |  |  * @param $label_ids | 
					
						
							|  |  |  |  * @param $escape | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @return string | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | function smarty_function_html_radios_output( | 
					
						
							|  |  |  |     $name, | 
					
						
							|  |  |  |     $value, | 
					
						
							|  |  |  |     $output, | 
					
						
							|  |  |  |     $selected, | 
					
						
							|  |  |  |     $extra, | 
					
						
							|  |  |  |     $separator, | 
					
						
							|  |  |  |     $labels, | 
					
						
							|  |  |  |     $label_ids, | 
					
						
							|  |  |  |     $escape | 
					
						
							|  |  |  | ) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $_output = ''; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     if (is_object($value)) { | 
					
						
							| 
									
										
										
										
											2017-11-06 01:02:56 +01:00
										 |  |  |         if (method_exists($value, '__toString')) { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |             $value = (string)$value->__toString(); | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |             trigger_error( | 
					
						
							|  |  |  |                 'html_options: value is an object of class \'' . get_class($value) . | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                 '\' without __toString() method', | 
					
						
							|  |  |  |                 E_USER_NOTICE | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |             ); | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |             return ''; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |         $value = (string)$value; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (is_object($output)) { | 
					
						
							| 
									
										
										
										
											2017-11-06 01:02:56 +01:00
										 |  |  |         if (method_exists($output, '__toString')) { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |             $output = (string)$output->__toString(); | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |             trigger_error( | 
					
						
							|  |  |  |                 'html_options: output is an object of class \'' . get_class($output) . | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                 '\' without __toString() method', | 
					
						
							|  |  |  |                 E_USER_NOTICE | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |             ); | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |             return ''; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |         $output = (string)$output; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     if ($labels) { | 
					
						
							|  |  |  |         if ($label_ids) { | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |             $_id = smarty_function_escape_special_chars( | 
					
						
							|  |  |  |                 preg_replace( | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |                     '![^\w\-\.]!' . Smarty::$_UTF8_MODIFIER, | 
					
						
							|  |  |  |                     '_', | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |                     $name . '_' . $value | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             $_output .= '<label for="' . $_id . '">'; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $_output .= '<label>'; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     $name = smarty_function_escape_special_chars($name); | 
					
						
							|  |  |  |     $value = smarty_function_escape_special_chars($value); | 
					
						
							| 
									
										
										
										
											2011-11-16 11:28:35 +00:00
										 |  |  |     if ($escape) { | 
					
						
							|  |  |  |         $output = smarty_function_escape_special_chars($output); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     $_output .= '<input type="radio" name="' . $name . '" value="' . $value . '"'; | 
					
						
							|  |  |  |     if ($labels && $label_ids) { | 
					
						
							|  |  |  |         $_output .= ' id="' . $_id . '"'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ($value === $selected) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $_output .= ' checked="checked"'; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $_output .= $extra . ' />' . $output; | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |     if ($labels) { | 
					
						
							|  |  |  |         $_output .= '</label>'; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $_output .= $separator; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     return $_output; | 
					
						
							|  |  |  | } |