blob: 43534eec7fd6abbe4bf20fbb8c665f541134329c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Elgg long text input
* Displays a long text input field
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['value'] The current value, if any - will be html encoded
* @uses $vars['disabled'] Is the input field disabled?
*/
$defaults = array(
'class' => 'elgg-input-longtext',
);
$vars = array_merge($defaults, $vars);
echo elgg_view('input/plaintext', $vars);
|