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