blob: aefb2ada6a012c0fc803a7eb718b42081a5d936e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Create a submit input button
* Use this view for forms rather than creating a submit/reset button tag in the wild as it provides
* extra security which help prevent CSRF attacks.
*
* @package Elgg
* @subpackage Core
*/
$vars['type'] = 'submit';
echo elgg_view('input/button', $vars);
|