diff options
Diffstat (limited to 'views/default/input')
-rw-r--r-- | views/default/input/button.php | 61 | ||||
-rw-r--r-- | views/default/input/reset.php | 13 | ||||
-rw-r--r-- | views/default/input/submit.php | 5 |
3 files changed, 20 insertions, 59 deletions
diff --git a/views/default/input/button.php b/views/default/input/button.php index 906e41b4c..1be03e3eb 100644 --- a/views/default/input/button.php +++ b/views/default/input/button.php @@ -5,61 +5,32 @@ * @package Elgg * @subpackage Core * - * @uses $vars['value'] The current value, if any - * @uses $vars['js'] Any Javascript to enter into the input tag - * @uses $vars['internalname'] The name of the input field - * @uses $vars['internalid'] The id of the input field - * @uses $vars['type'] Submit, button, or reset, defaults to submit. * @uses $vars['src'] Src of an image - * */ global $CONFIG; -if (isset($vars['class'])) { - $class = $vars['class']; -} else { - $class = "submit_button"; -} +$defaults = array( + 'type' => 'button', + 'class' => 'submit_button', +); -if (isset($vars['type'])) { - $type = strtolower($vars['type']); -} else { - $type = 'button'; -} +$vars = array_merge($defaults, $vars); -switch ($type) { - case 'button' : - $type = 'button'; - break; - case 'reset' : - $type = 'reset'; - break; +switch ($vars['type']) { + case 'button': + case 'reset': case 'submit': + case 'image': + break; default: - $type = 'submit'; -} - -$value = htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); - -$name = ''; -if (isset($vars['internalname'])) { - $name = $vars['internalname']; -} - -$src = ''; -if (isset($vars['src'])) { - $src = "src=\"{$vars['src']}\""; -} -// blank src if trying to access an offsite image. -if (strpos($src, $CONFIG->wwwroot) === false) { - $src = ""; + $vars['type'] = 'button'; + break; } -$id = ''; -if (isset($vars['internalid'])) { - $id = "id=\"{$vars['internalid']}\""; +// blank src if trying to access an offsite image. @todo why? +if (strpos($vars['src'], $CONFIG->wwwroot) === false) { + $vars['src'] = ""; } - ?> -<input name="<?php echo $name; ?>" <?php echo $id; ?> type="<?php echo $type; ?>" class="<?php echo $class; ?>" <?php echo $vars['js']; ?> value="<?php echo $value; ?>" <?php echo $src; ?> />
\ No newline at end of file +<input <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file diff --git a/views/default/input/reset.php b/views/default/input/reset.php index 1d5e47ccb..d1296e4bf 100644 --- a/views/default/input/reset.php +++ b/views/default/input/reset.php @@ -1,24 +1,15 @@ <?php /** * Create a reset input button + * + * @todo ... huh? * Use this view for forms rather than creating a submit/reset button tag in the wild as it provides * extra security which help prevent CSRF attacks. * * @package Elgg * @subpackage Core - * - * @uses $vars['value'] The current value, if any - * @uses $vars['js'] Any Javascript to enter into the input tag - * @uses $vars['internalname'] The name of the input field - * @uses $vars['type'] Submit or reset, defaults to submit. - * */ $vars['type'] = 'reset'; -$class = $vars['class']; -if (!$class) { - $class = "submit_button"; -} -$vars['class'] = $class; echo elgg_view('input/button', $vars);
\ No newline at end of file diff --git a/views/default/input/submit.php b/views/default/input/submit.php index 315a70eac..39734b807 100644 --- a/views/default/input/submit.php +++ b/views/default/input/submit.php @@ -1,6 +1,8 @@ <?php /** * Create a submit input button + * + * @todo ... huh? * Use this view for forms rather than creating a submit/reset button tag in the wild as it provides * extra security which help prevent CSRF attacks. * @@ -9,8 +11,5 @@ */ $vars['type'] = 'submit'; -if (!isset($vars['class'])) { - $vars['class'] = "submit_button"; -} echo elgg_view('input/button', $vars);
\ No newline at end of file |