blob: dcdb380cac28b7eaefd9e5553b49a90683cf8896 (
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 comments add form
*
* @package Elgg
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@curverider.co.uk>
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*
* @uses $vars['entity']
*/
if (isset($vars['entity'])) {
?>
<form action="<?php echo $vars['url']; ?>action/comments/add" method="post">
<h3>
<?php echo elgg_echo("generic_comments:add"); ?>
</h3>
<p>
<label><?php echo elgg_echo("generic_comments:text"); ?><br />
<?php
echo elgg_view('input/longtext',array('internalname' => 'generic_comment'));
?>
</label>
</p>
<p>
<input type="hidden" name="entity_guid" value="<?php echo $vars['entity']->getGUID(); ?>" />
<input type="submit" value="<?php echo elgg_echo("save"); ?>" />
</p>
</form>
<?php
}
?>
|