aboutsummaryrefslogtreecommitdiff
path: root/views/default/comments/forms/edit.php
blob: 6a782bbe9a7a97046e1345c20b369f37cca6df1b (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
<?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']) && isloggedin()) {
	 
?>
 
    <form action="<?php echo $vars['url']; ?>action/comments/add" method="post">
				<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

    }
    
?>