diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/default/input/email.php | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/views/default/input/email.php b/views/default/input/email.php index efe2c5848..81e617476 100644 --- a/views/default/input/email.php +++ b/views/default/input/email.php @@ -5,24 +5,18 @@ * * @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 - * */ -$class = $vars['class']; -if (!$class) { - $class = "input_text"; -} +$defaults = array( + 'class' => 'input_text', //@todo input_email? + 'disabled' => FALSE, +); + +$vars = array_merge($defaults, $vars); if (!isset($vars['value']) || $vars['value'] === FALSE) { $vars['value'] = elgg_get_sticky_value($vars['internalname']); } - ?> -<input type="text" <?php echo $vars['js']; ?> name="<?php echo $vars['internalname']; ?>" <?php if (isset($vars['internalid'])) echo "id=\"{$vars['internalid']}\""; ?>value="<?php echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); ?>" class="<?php echo $class; ?>"/>
\ No newline at end of file +<input type="text" <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file |