mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 18:34:27 +02:00
html_options, html_checkboxes and html_radios now pass-thru all unknown paramters
This commit is contained in:
4
NEWS
4
NEWS
@@ -1,4 +1,6 @@
|
|||||||
- html_options passthru all unknown paramters now
|
- html_checkboxes and html_radios passthru all unknown paramters now
|
||||||
|
additionally their output is now XHTML compliant (messju)
|
||||||
|
- html_options passthru all unknown paramters now (messju)
|
||||||
- fix link functionality of html_image, also make
|
- fix link functionality of html_image, also make
|
||||||
output XHTML compatible (Hinrich Donner, Monte)
|
output XHTML compatible (Hinrich Donner, Monte)
|
||||||
- append "@" to default modifier vars/args
|
- append "@" to default modifier vars/args
|
||||||
|
@@ -24,41 +24,75 @@
|
|||||||
*/
|
*/
|
||||||
function smarty_function_html_checkboxes($params, &$smarty)
|
function smarty_function_html_checkboxes($params, &$smarty)
|
||||||
{
|
{
|
||||||
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
|
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
|
||||||
|
|
||||||
|
$name = 'checkbox';
|
||||||
|
$values = null;
|
||||||
|
$checkboxes = null;
|
||||||
|
$checked = null;
|
||||||
|
$separator = '';
|
||||||
|
$output = null;
|
||||||
|
|
||||||
|
$extra = '';
|
||||||
|
|
||||||
|
foreach($params as $_key => $_val) {
|
||||||
|
switch($_key) {
|
||||||
|
case 'name':
|
||||||
|
case 'separator':
|
||||||
|
$$_key = $_val;
|
||||||
|
break;
|
||||||
|
|
||||||
extract($params);
|
case 'checkboxes':
|
||||||
|
$$_key = (array)$_val;
|
||||||
|
break;
|
||||||
|
|
||||||
$_html_result = '';
|
case 'values':
|
||||||
if(!isset($name)){
|
case 'output':
|
||||||
$name = 'checkbox';
|
case 'checked':
|
||||||
}
|
$$_key = array_values((array)$_val);
|
||||||
settype($checked, 'array');
|
break;
|
||||||
if (isset($checkboxes)) {
|
|
||||||
settype($checkboxes, 'array');
|
|
||||||
foreach ($checkboxes as $_key => $_val) {
|
|
||||||
$_html_result .= smarty_function_html_checkboxes_output($name, $_key, $_val, $checked, $separator);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
settype($output, 'array');
|
|
||||||
settype($values, 'array');
|
|
||||||
for ($_i = 0, $_for_max = count($output); $_i < $_for_max; $_i++) {
|
|
||||||
$_html_result .= smarty_function_html_checkboxes_output($name, $values[$_i], $output[$_i], $checked, $separator);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $_html_result;
|
default:
|
||||||
|
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($checkboxes) && !isset($values))
|
||||||
|
return ''; /* raise error here? */
|
||||||
|
|
||||||
|
settype($checked, 'array');
|
||||||
|
$_html_result = '';
|
||||||
|
|
||||||
|
if (is_array($checkboxes)) {
|
||||||
|
|
||||||
|
foreach ($checkboxes as $_key=>$_val)
|
||||||
|
$_html_result .= smarty_function_html_checkboxes_output($name, $_key, $_val, $checked, $extra, $separator);
|
||||||
|
|
||||||
|
|
||||||
|
} else {
|
||||||
|
foreach ($values as $_i=>$_key) {
|
||||||
|
$_val = isset($output[$_i]) ? $output[$_i] : '';
|
||||||
|
$_html_result .= smarty_function_html_checkboxes_output($name, $_key, $_val, $checked, $extra, $separator);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return $_html_result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function smarty_function_html_checkboxes_output($name, $value, $output, $checked, $separator) {
|
function smarty_function_html_checkboxes_output($name, $value, $output, $checked, $extra, $separator) {
|
||||||
$_output = '<input type="checkbox" name="' . smarty_function_escape_special_chars($name) . '[]' .'" value="' . smarty_function_escape_special_chars($value) . '"';
|
$_output = '<input type="checkbox" name="'
|
||||||
|
. smarty_function_escape_special_chars($name) . '[]" value="'
|
||||||
if (in_array($value, $checked)) {
|
. smarty_function_escape_special_chars($value) . '"';
|
||||||
$_output .= " checked=\"checked\"";
|
|
||||||
}
|
if (in_array($value, $checked)) {
|
||||||
$_output .= '>' . $output . $separator . "\n";
|
$_output .= ' checked="checked"';
|
||||||
|
}
|
||||||
return $_output;
|
$_output .= $extra . ' />' . $output . $separator . "\n";
|
||||||
|
|
||||||
|
return $_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@@ -5,71 +5,96 @@
|
|||||||
* -------------------------------------------------------------
|
* -------------------------------------------------------------
|
||||||
* Type: function
|
* Type: function
|
||||||
* Name: html_options
|
* Name: html_options
|
||||||
|
* Input: 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
|
||||||
* Purpose: Prints the list of <option> tags generated from
|
* Purpose: Prints the list of <option> tags generated from
|
||||||
* the passed parameters
|
* the passed parameters
|
||||||
* -------------------------------------------------------------
|
* -------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
function smarty_function_html_options($params, &$smarty)
|
function smarty_function_html_options($params, &$smarty)
|
||||||
{
|
{
|
||||||
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
|
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
|
||||||
|
|
||||||
|
$name = 'select';
|
||||||
|
$values = null;
|
||||||
|
$options = null;
|
||||||
|
$selected = array();
|
||||||
|
$output = null;
|
||||||
|
|
||||||
extract($params);
|
$extra = '';
|
||||||
|
|
||||||
|
foreach($params as $_key => $_val) {
|
||||||
|
switch($_key) {
|
||||||
|
case 'name':
|
||||||
|
$$_key = (string)$_val;
|
||||||
|
break;
|
||||||
|
|
||||||
$html_result = '';
|
case 'options':
|
||||||
|
$$_key = (array)$_val;
|
||||||
|
break;
|
||||||
|
|
||||||
settype($selected, 'array');
|
case 'selected':
|
||||||
if (isset($options)) {
|
case 'values':
|
||||||
settype($options, 'array');
|
case 'output':
|
||||||
foreach ($options as $key => $value) {
|
$$_key = array_values((array)$_val);
|
||||||
$html_result .= smarty_function_html_options_optoutput($key, $value, $selected);
|
break;
|
||||||
}
|
|
||||||
} else {
|
|
||||||
settype($output, 'array');
|
|
||||||
settype($values, 'array');
|
|
||||||
for ($i = 0, $for_max = count($output); $i < $for_max; $i++) {
|
|
||||||
if ($i < count($values)) {
|
|
||||||
$html_result .= smarty_function_html_options_optoutput($values[$i], $output[$i], $selected);
|
|
||||||
} else {
|
|
||||||
$html_result .= smarty_function_html_options_optoutput($output[$i], $output[$i], $selected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* passthru all unknown params to $extra */
|
default:
|
||||||
$extra = '';
|
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
|
||||||
unset($params['values']);
|
break;
|
||||||
unset($params['output']);
|
}
|
||||||
unset($params['selected']);
|
}
|
||||||
unset($params['options']);
|
|
||||||
unset($params['name']);
|
if (!isset($options) && !isset($values))
|
||||||
foreach ($params as $key=>$value) $extra .= ' ' . $key . '="'. htmlspecialchars($value) . '"';
|
return ''; /* raise error here? */
|
||||||
|
|
||||||
|
$_html_result = '';
|
||||||
|
|
||||||
|
if (is_array($options)) {
|
||||||
|
|
||||||
|
foreach ($options as $_key=>$_val)
|
||||||
|
$_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
foreach ((array)$values as $_i=>$_key) {
|
||||||
|
$_val = isset($output[$_i]) ? $output[$_i] : '';
|
||||||
|
$_html_result .= smarty_function_html_options_optoutput($_key, $_val, $selected);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!empty($name)) {
|
||||||
|
$_html_result = '<select name="' . $name . '"' . $extra . '>' . "\n" . $_html_result . '</select>' . "\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
return $_html_result;
|
||||||
|
|
||||||
if(!empty($name)) {
|
|
||||||
$html_result = '<select name="' . $name . '"' . $extra . '>' . "\n" . $html_result . '</select>' . "\n";
|
|
||||||
}
|
|
||||||
return $html_result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function smarty_function_html_options_optoutput($key, $value, $selected) {
|
function smarty_function_html_options_optoutput($key, $value, $selected) {
|
||||||
if(!is_array($value)) {
|
if(!is_array($value)) {
|
||||||
$html_result = '<option label="' . smarty_function_escape_special_chars($value) . '" value="' .
|
$_html_result = '<option label="' . smarty_function_escape_special_chars($value) . '" value="' .
|
||||||
smarty_function_escape_special_chars($key) . '"';
|
smarty_function_escape_special_chars($key) . '"';
|
||||||
if (in_array($key, $selected))
|
if (in_array($key, $selected))
|
||||||
$html_result .= " selected=\"selected\"";
|
$_html_result .= ' selected="selected"';
|
||||||
$html_result .= '>' . smarty_function_escape_special_chars($value) . '</option>' . "\n";
|
$_html_result .= '>' . smarty_function_escape_special_chars($value) . '</option>' . "\n";
|
||||||
} else {
|
} else {
|
||||||
$html_result = smarty_function_html_options_optgroup($key, $value, $selected);
|
$_html_result = smarty_function_html_options_optgroup($key, $value, $selected);
|
||||||
}
|
}
|
||||||
return $html_result;
|
return $_html_result;
|
||||||
}
|
}
|
||||||
|
|
||||||
function smarty_function_html_options_optgroup($key, $values, $selected) {
|
function smarty_function_html_options_optgroup($key, $values, $selected) {
|
||||||
$optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($value) . '">' . "\n";
|
$optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($value) . '">' . "\n";
|
||||||
foreach ($values as $key => $value) {
|
foreach ($values as $key => $value) {
|
||||||
$optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected);
|
$optgroup_html .= smarty_function_html_options_optoutput($key, $value, $selected);
|
||||||
}
|
}
|
||||||
$optgroup_html .= "</optgroup>\n";
|
$optgroup_html .= "</optgroup>\n";
|
||||||
return $optgroup_html;
|
return $optgroup_html;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* vim: set expandtab: */
|
/* vim: set expandtab: */
|
||||||
|
@@ -22,42 +22,75 @@
|
|||||||
* {html_radios values=$ids checked=$checked separator='<br>' output=$names}
|
* {html_radios values=$ids checked=$checked separator='<br>' output=$names}
|
||||||
* -------------------------------------------------------------
|
* -------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
require_once $this->_get_plugin_filepath('shared','escape_special_chars');
|
|
||||||
function smarty_function_html_radios($params, &$smarty)
|
function smarty_function_html_radios($params, &$smarty)
|
||||||
{
|
{
|
||||||
extract($params);
|
require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
|
||||||
|
|
||||||
$_html_result = '';
|
$name = 'radio';
|
||||||
if(!isset($name)){
|
$values = null;
|
||||||
$name = 'radio';
|
$radios = null;
|
||||||
}
|
$checked = null;
|
||||||
settype($checked, 'array');
|
$separator = '';
|
||||||
if (isset($radios)) {
|
$output = null;
|
||||||
settype($radios, 'array');
|
$extra = '';
|
||||||
foreach ($radios as $_key => $_val) {
|
|
||||||
$_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $checked, $separator);
|
foreach($params as $_key => $_val) {
|
||||||
}
|
switch($_key) {
|
||||||
} else {
|
case 'name':
|
||||||
settype($output, 'array');
|
case 'separator':
|
||||||
settype($values, 'array');
|
case 'checked':
|
||||||
for ($_i = 0, $_for_max = count($output); $_i < $_for_max; $_i++) {
|
$$_key = (string)$_val;
|
||||||
$_html_result .= smarty_function_html_radios_output($name, $values[$_i], $output[$_i], $checked, $separator);
|
break;
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return $_html_result;
|
case 'radios':
|
||||||
|
$$_key = (array)$_val;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'values':
|
||||||
|
case 'output':
|
||||||
|
$$_key = array_values((array)$_val);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isset($radios) && !isset($values))
|
||||||
|
return ''; /* raise error here? */
|
||||||
|
|
||||||
|
$_html_result = '';
|
||||||
|
|
||||||
|
if (isset($radios) && is_array($radios)) {
|
||||||
|
|
||||||
|
foreach ((array)$radios as $_key=>$_val)
|
||||||
|
$_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $checked, $extra, $separator);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
foreach ((array)$values as $_i=>$_key) {
|
||||||
|
$_val = isset($output[$_i]) ? $output[$_i] : '';
|
||||||
|
$_html_result .= smarty_function_html_radios_output($name, $_key, $_val, $checked, $extra, $separator);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return $_html_result;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function smarty_function_html_radios_output($name, $value, $output, $checked, $separator) {
|
function smarty_function_html_radios_output($name, $value, $output, $checked, $extra, $separator) {
|
||||||
$_output = '<input type="radio" name="' . smarty_function_escape_special_chars($name) . '" value="' . smarty_function_escape_special_chars($value) . '"';
|
$_output = '<input type="radio" name="'
|
||||||
|
. smarty_function_escape_special_chars($name) . '" value="'
|
||||||
if (in_array($value, $checked)) {
|
. smarty_function_escape_special_chars($value) . '"';
|
||||||
$_output .= " checked=\"checked\"";
|
|
||||||
}
|
|
||||||
$_output .= '>' . $output . $separator . "\n";
|
|
||||||
|
|
||||||
return $_output;
|
if ($value==$checked) {
|
||||||
|
$_output .= ' checked="checked"';
|
||||||
|
}
|
||||||
|
$_output .= $extra . ' />' . $output . $separator . "\n";
|
||||||
|
|
||||||
|
return $_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user