| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Smarty plugin | 
					
						
							| 
									
										
										
										
											2003-02-24 21:10:01 +00:00
										 |  |  |  * ------------------------------------------------------------- | 
					
						
							|  |  |  |  * File:       function.html_radios.php | 
					
						
							|  |  |  |  * Type:       function
 | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |  * Name:       html_radios | 
					
						
							| 
									
										
										
										
											2003-02-24 21:10:01 +00:00
										 |  |  |  * Version:    1.0 | 
					
						
							|  |  |  |  * Date:       24.Feb.2003 | 
					
						
							| 
									
										
										
										
											2003-02-24 21:45:19 +00:00
										 |  |  |  * Purpose:    Prints out a list of radio input types | 
					
						
							| 
									
										
										
										
											2003-02-24 21:10:01 +00:00
										 |  |  |  * Input:      name       (optional) - string default "radio" | 
					
						
							|  |  |  |  *             values     (required) - array | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |  *             options    (optional) - associative array | 
					
						
							| 
									
										
										
										
											2003-02-24 21:10:01 +00:00
										 |  |  |  *             checked    (optional) - array default not set | 
					
						
							|  |  |  |  *             separator  (optional) - ie <br> or   | 
					
						
							|  |  |  |  *             output     (optional) - without this one the buttons don't have names | 
					
						
							|  |  |  |  * Author:     Christopher Kvarme <christopher.kvarme@flashjab.com> | 
					
						
							|  |  |  |  * Credits:    Monte Ohrt <monte@ispi.net> | 
					
						
							|  |  |  |  * Examples:   {html_radios values=$ids output=$names} | 
					
						
							| 
									
										
										
										
											2003-02-24 21:45:19 +00:00
										 |  |  |  *             {html_radios values=$ids name='box' separator='<br>' output=$names} | 
					
						
							| 
									
										
										
										
											2003-02-24 21:10:01 +00:00
										 |  |  |  *             {html_radios values=$ids checked=$checked separator='<br>' output=$names} | 
					
						
							|  |  |  |  * ------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | function smarty_function_html_radios($params, &$smarty) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |    require_once $smarty->_get_plugin_filepath('shared','escape_special_chars'); | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  |     | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |    $name = 'radio'; | 
					
						
							|  |  |  |    $values = null; | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |    $options = null; | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  |    $selected = null; | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |    $separator = ''; | 
					
						
							|  |  |  |    $output = null; | 
					
						
							|  |  |  |    $extra = ''; | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    foreach($params as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 		switch($_key) { | 
					
						
							|  |  |  | 		case 'name': | 
					
						
							|  |  |  | 		case 'separator': | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 		    $$_key = (string)$_val; | 
					
						
							|  |  |  | 		    break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 		case 'checked': | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 		case 'selected': | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 			if(is_array($_val)) { | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 				$smarty->trigger_error('html_radios: the "' . $_key . '" attribute cannot be an array', E_USER_WARNING); | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 				$selected = (string)$_val; | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'options': | 
					
						
							|  |  |  | 			$$_key = (array)$_val; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'values': | 
					
						
							|  |  |  | 		case 'output': | 
					
						
							|  |  |  | 			$$_key = array_values((array)$_val); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case 'radios': | 
					
						
							| 
									
										
										
										
											2003-03-19 22:58:23 +00:00
										 |  |  | 			$smarty->trigger_error('html_radios: the use of the "radios" attribute is deprecated, use "options" instead', E_USER_WARNING); | 
					
						
							| 
									
										
										
										
											2003-03-19 22:52:22 +00:00
										 |  |  | 			$options = (array)$_val; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars((string)$_val).'"'; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |    } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |    if (!isset($options) && !isset($values)) | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |       return ''; /* raise error here? */ | 
					
						
							| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |    $_html_result = ''; | 
					
						
							| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |    if (isset($options) && is_array($options)) { | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |       foreach ((array)$options as $_key=>$_val) | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 	 $_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator); | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    } else { | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       foreach ((array)$values as $_i=>$_key) { | 
					
						
							|  |  |  | 	 $_val = isset($output[$_i]) ? $output[$_i] : ''; | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | 	 $_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $selected, $extra, $separator); | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    return $_html_result; | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  | function smarty_function_html_radios_output($name, $value, $output, $selected, $extra, $separator) { | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  |    $_output = '<input type="radio" name="' | 
					
						
							|  |  |  |       . smarty_function_escape_special_chars($name) . '" value="' | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |       . smarty_function_escape_special_chars($value) . '"'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-21 08:20:12 +00:00
										 |  |  |    if ($value==$selected) { | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  |       $_output .= ' checked="checked"'; | 
					
						
							|  |  |  |    } | 
					
						
							|  |  |  |    $_output .= $extra . ' />' . $output . $separator . "\n"; | 
					
						
							| 
									
										
										
										
											2003-03-18 08:59:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    return $_output; | 
					
						
							| 
									
										
										
										
											2003-03-18 00:01:41 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-02-24 15:36:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ?>
 |