aboutsummaryrefslogtreecommitdiff
path: root/views/default/input/button.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 07:12:04 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 07:12:04 +0000
commit51f2b120faf78b7224a42b769cb99c2620ae9030 (patch)
treed6ef60622c5037823a64ac027dd7b9a47a9ac08e /views/default/input/button.php
parent1702fd784aace9f5d78dd252b89185a13f195aaa (diff)
downloadelgg-51f2b120faf78b7224a42b769cb99c2620ae9030.tar.gz
elgg-51f2b120faf78b7224a42b769cb99c2620ae9030.tar.bz2
Refs #2143: DRY up button input views (button, reset, submit). Changed core uses of button to reflect the fact that it no longer defaults to submit
git-svn-id: http://code.elgg.org/elgg/trunk@7364 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/input/button.php')
-rw-r--r--views/default/input/button.php61
1 files changed, 16 insertions, 45 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