aboutsummaryrefslogtreecommitdiff
path: root/views/default/comments/forms/edit.php
blob: f28a53b36ef1a0da85b9d7a8be7386fbd6d37f36 (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
<?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 />
					    <textarea name="generic_comment" value="" id="generic_comment" class="expanding" /></textarea>
					</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

    }
    
?>