blob: 61dc7ca190ba052cf3af4a6e467ee204b3a92938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/**
* Elgg long text input
* Displays a long text input field that can use WYSIWYG editor
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['value'] The current value, if any - will be html encoded
* @uses $vars['disabled'] Is the input field disabled?
* @uses $vars['class'] Additional CSS class
*/
if (isset($vars['class'])) {
$vars['class'] = "elgg-input-longtext {$vars['class']}";
} else {
$vars['class'] = "elgg-input-longtext";
}
$defaults = array(
'value' => '',
'rows' => '10',
'cols' => '50',
'id' => 'elgg-input-' . rand(), //@todo make this more robust
);
$vars = array_merge($defaults, $vars);
$value = $vars['value'];
unset($vars['value']);
echo elgg_view_menu('longtext', array(
'sort_by' => 'priority',
'class' => 'elgg-menu-hz',
'id' => $vars['id'],
));
?>
<textarea <?php echo elgg_format_attributes($vars); ?>>
<?php echo htmlspecialchars($value, ENT_QUOTES, 'UTF-8', false); ?>
</textarea>
|