Elgg  Version 1.9
text.php
Go to the documentation of this file.
1 <?php
12 if (isset($vars['class'])) {
13  $vars['class'] = "elgg-input-text {$vars['class']}";
14 } else {
15  $vars['class'] = "elgg-input-text";
16 }
17 
18 $defaults = array(
19  'value' => '',
20  'disabled' => false,
21 );
22 
23 $vars = array_merge($defaults, $vars);
24 
25 ?>
26 <input type="text" <?php echo elgg_format_attributes($vars); ?> />
$vars
Definition: text.php:23
$defaults
Definition: text.php:18
elgg echo
Translates a string.
Definition: languages.js:43
elgg_format_attributes(array $attrs=array())
Converts an associative array into a string of well-formed attributes.
Definition: output.php:118
list style type
Definition: admin.php:724
elgg table input[type=checkbox]
Definition: admin.php:392