aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/comments/add.php
blob: 6d674838aff63f28db9c7610ecbd6863af4f962b (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
<?php
/**
 * Elgg comments add form
 *
 * @package Elgg
 *
 * @uses ElggEntity $vars['entity'] The entity to comment on
 * @uses bool       $vars['inline'] Show a single line version of the form?
 */


if (isset($vars['entity']) && elgg_is_logged_in()) {
	
	$inline = elgg_extract('inline', $vars, false);
	
	if ($inline) {
		echo elgg_view('input/text', array('name' => 'generic_comment'));
		echo elgg_view('input/submit', array('value' => elgg_echo('comment')));
	} else {
?>
		<div>
			<label><?php echo elgg_echo("generic_comments:add"); ?></label>
			<?php echo elgg_view('input/longtext', array('name' => 'generic_comment')); ?>
		</div>
<?php
		echo elgg_view('input/submit', array('value' => elgg_echo("generic_comments:post")));
	}
	
	echo elgg_view('input/hidden', array(
		'name' => 'entity_guid',
		'value' => $vars['entity']->getGUID()
	));
}