| 
									
										
										
										
											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_options} function plugin | 
					
						
							|  |  |  |  * Type:     function<br> | 
					
						
							|  |  |  |  * Name:     html_options<br> | 
					
						
							|  |  |  |  * Purpose:  Prints the list of <option> tags generated from | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  *           the passed parameters<br> | 
					
						
							|  |  |  |  * Params: | 
					
						
							|  |  |  |  * <pre> | 
					
						
							|  |  |  |  * - name       (optional) - string default "select" | 
					
						
							|  |  |  |  * - values     (required) - if no options supplied) - array | 
					
						
							|  |  |  |  * - options    (required) - if no values supplied) - associative array | 
					
						
							|  |  |  |  * - selected   (optional) - string default not set | 
					
						
							|  |  |  |  * - output     (required) - if not options supplied) - array | 
					
						
							|  |  |  |  * - id         (optional) - string default not set | 
					
						
							|  |  |  |  * - class      (optional) - string default not set | 
					
						
							|  |  |  |  * </pre> | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @link     http://www.smarty.net/manual/en/language.function.html.options.php {html_image} | 
					
						
							|  |  |  |  *           (Smarty online manual) | 
					
						
							|  |  |  |  * @author   Monte Ohrt <monte at ohrt dot com> | 
					
						
							|  |  |  |  * @author   Ralf Strehle (minor optimization) <ralf dot strehle at yahoo dot de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param array $params parameters | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |  * @return string | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @uses     smarty_function_escape_special_chars() | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  | function smarty_function_html_options($params) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-19 13:22:32 +00:00
										 |  |  |     require_once(SMARTY_PLUGINS_DIR . 'shared.escape_special_chars.php'); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $name = null; | 
					
						
							|  |  |  |     $values = null; | 
					
						
							|  |  |  |     $options = null; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     $selected = null; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $output = null; | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |     $id = null; | 
					
						
							|  |  |  |     $class = null; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $extra = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     foreach ($params as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         switch ($_key) { | 
					
						
							|  |  |  |             case 'name': | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |             case 'class': | 
					
						
							|  |  |  |             case 'id': | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |                 $$_key = (string) $_val; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case 'options': | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |                 $options = (array) $_val; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case 'values': | 
					
						
							|  |  |  |             case 'output': | 
					
						
							| 
									
										
										
										
											2011-10-07 13:39:45 +00:00
										 |  |  |                 $$_key = array_values((array) $_val); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case 'selected': | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 if (is_array($_val)) { | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |                     $selected = array(); | 
					
						
							|  |  |  |                     foreach ($_val as $_sel) { | 
					
						
							|  |  |  |                         if (is_object($_sel)) { | 
					
						
							|  |  |  |                             if (method_exists($_sel, "__toString")) { | 
					
						
							| 
									
										
										
										
											2011-10-10 08:53:43 +00:00
										 |  |  |                                 $_sel = smarty_function_escape_special_chars((string) $_sel->__toString()); | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |                             } else { | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |                                 trigger_error("html_options: selected attribute contains an object of class '" . get_class($_sel) . "' without __toString() method", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |                                 continue; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             $_sel = smarty_function_escape_special_chars((string) $_sel); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         $selected[$_sel] = true; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } elseif (is_object($_val)) { | 
					
						
							|  |  |  |                     if (method_exists($_val, "__toString")) { | 
					
						
							|  |  |  |                         $selected = smarty_function_escape_special_chars((string) $_val->__toString()); | 
					
						
							|  |  |  |                     } else { | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |                         trigger_error("html_options: selected attribute is an object of class '" . get_class($_val) . "' without __toString() method", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |                     $selected = smarty_function_escape_special_chars((string) $_val); | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |             case 'strict': | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 18:31:48 +00:00
										 |  |  |             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); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 18:31:48 +00:00
										 |  |  |                     if ($_val === true || $_val === $_key) { | 
					
						
							|  |  |  |                         $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_key) . '"'; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 18:31:48 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |             // omit break; to fall through!
 | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             default: | 
					
						
							|  |  |  |                 if (!is_array($_val)) { | 
					
						
							|  |  |  |                     $extra .= ' ' . $_key . '="' . smarty_function_escape_special_chars($_val) . '"'; | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2009-12-01 20:34:32 +00:00
										 |  |  |                     trigger_error("html_options: 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-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |     if (!isset($options) && !isset($values)) { | 
					
						
							|  |  |  |         /* raise error here? */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         return ''; | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $_html_result = ''; | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |     $_idx = 0; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (isset($options)) { | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |         foreach ($options as $_key => $_val) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx); | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         foreach ($values as $_i => $_key) { | 
					
						
							|  |  |  |             $_val = isset($output[$_i]) ? $output[$_i] : ''; | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |             $_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected, $id, $class, $_idx); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!empty($name)) { | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |         $_html_class = !empty($class) ? ' class="' . $class . '"' : ''; | 
					
						
							|  |  |  |         $_html_id = !empty($id) ? ' id="' . $id . '"' : ''; | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |         $_html_result = '<select name="' . $name . '"' . $_html_class . $_html_id . $extra . '>' . "\n" . $_html_result . '</select>' . "\n"; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return $_html_result; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  | function smarty_function_html_options_optoutput($key, $value, $selected, $id, $class, &$idx) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!is_array($value)) { | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |         $_key = smarty_function_escape_special_chars($key); | 
					
						
							|  |  |  |         $_html_result = '<option value="' . $_key . '"'; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         if (is_array($selected)) { | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |             if (isset($selected[$_key])) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 $_html_result .= ' selected="selected"'; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-10-05 18:51:10 +00:00
										 |  |  |         } elseif ($_key === $selected) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             $_html_result .= ' selected="selected"'; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |         $_html_class = !empty($class) ? ' class="' . $class . ' option"' : ''; | 
					
						
							|  |  |  |         $_html_id = !empty($id) ? ' id="' . $id . '-' . $idx . '"' : ''; | 
					
						
							| 
									
										
										
										
											2011-10-07 12:11:33 +00:00
										 |  |  |         if (is_object($value)) { | 
					
						
							|  |  |  |             if (method_exists($value, "__toString")) { | 
					
						
							|  |  |  |                 $value = smarty_function_escape_special_chars((string) $value->__toString()); | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |                 trigger_error("html_options: value is an object of class '" . get_class($value) . "' without __toString() method", E_USER_NOTICE); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-07 12:11:33 +00:00
										 |  |  |                 return ''; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2012-05-12 10:59:49 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             $value = smarty_function_escape_special_chars((string) $value); | 
					
						
							| 
									
										
										
										
											2011-10-07 12:11:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         $_html_result .= $_html_class . $_html_id . '>' . $value . '</option>' . "\n"; | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |         $idx ++; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |         $_idx = 0; | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |         $_html_result = smarty_function_html_options_optgroup($key, $value, $selected, !empty($id) ? ($id . '-' . $idx) : null, $class, $_idx); | 
					
						
							|  |  |  |         $idx ++; | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     return $_html_result; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  | function smarty_function_html_options_optgroup($key, $values, $selected, $id, $class, &$idx) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-04-16 13:49:46 +00:00
										 |  |  |     $optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "\n"; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     foreach ($values as $key => $value) { | 
					
						
							| 
									
										
										
										
											2010-12-21 15:59:25 +00:00
										 |  |  |         $optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected, $id, $class, $idx); | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     $optgroup_html .= "</optgroup>\n"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     return $optgroup_html; | 
					
						
							|  |  |  | } |