aboutsummaryrefslogtreecommitdiff
path: root/views/default/input
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
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')
-rw-r--r--views/default/input/button.php61
-rw-r--r--views/default/input/reset.php13
-rw-r--r--views/default/input/submit.php5
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