diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 04:01:36 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-12 04:01:36 +0000 |
commit | 60b9806ea9085ce9845dfe01c5fc5f3b19dd87cc (patch) | |
tree | 42c55b5f1ee83268f91839dc476aff685c144d8b /views | |
parent | c3cdb7635433b27a045bb8c17f5fb27a423974c5 (diff) | |
download | elgg-60b9806ea9085ce9845dfe01c5fc5f3b19dd87cc.tar.gz elgg-60b9806ea9085ce9845dfe01c5fc5f3b19dd87cc.tar.bz2 |
Refs #2143: DRYed up input/password
git-svn-id: http://code.elgg.org/elgg/trunk@8142 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/input/password.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/views/default/input/password.php b/views/default/input/password.php index 86bae9c7f..1bd70a419 100644 --- a/views/default/input/password.php +++ b/views/default/input/password.php @@ -12,10 +12,13 @@ * */ -$class = $vars['class']; -if (!$class) { - $class = "elgg-input-password"; -} +$defaults = array( + 'class' => 'elgg-input-password', + 'disabled' => FALSE, + +) + +$attrs = array_merge($defaults, $vars); ?> -<input type="password" <?php if ($vars['disabled']) echo ' disabled="yes" '; ?> <?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="password" <?php echo elgg_format_attributes($attrs); ?> />
\ No newline at end of file |