blob: b4f63b8145a95bf396d8093172b7e2e0204b9546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* Elgg comments add form
*
* @package Elgg
*
* @uses $vars['entity']
*/
if (isset($vars['entity']) && elgg_is_logged_in()) {
?>
<div class="mbn">
<label><?php echo elgg_echo("generic_comments:text"); ?></label>
<?php echo elgg_view('input/longtext', array('internalname' => 'generic_comment')); ?>
</div>
<?php
echo elgg_view('input/hidden', array(
'internalname' => 'entity_guid',
'value' => $vars['entity']->getGUID()
));
echo elgg_view('input/submit', array('value' => elgg_echo("generic_comments:post")));
}
|