blob: cf9f640973dde1fb0c6443f665fa1db7d464acd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Create an input field
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*
* @uses $vars['internalname'] The name of the input field
* @uses $vars['internalid'] The id of the input field
* @deprecated $vars['js'] Use named attributes instead
*
* All other input attributes can be specified using their attribute name
* including javascript event attributes such as onclick.
*/
//@todo put deprecated notice
echo elgg_view('html/input', $vars);
|