text.php 171 B

123456789101112
  1. <?php
  2. /**
  3. * Displays a text input field
  4. */
  5. $vars['class'] = 'elgg-input-text';
  6. $vars['type'] = 'text';
  7. $attrs = elgg_format_attributes($vars);
  8. echo "<input $attrs>";