submit.php 216 B

1234567891011
  1. <?php
  2. /**
  3. * Create a submit input button
  4. *
  5. * @uses $vars['value'] The current value, if any
  6. * @uses $vars['name'] The name of the input field
  7. */
  8. $vars['type'] = 'submit';
  9. echo elgg_view('input/button', $vars);