aboutsummaryrefslogtreecommitdiff
path: root/views/default/forms/comments/add.php
blob: 48b8124b61078658890a814f4639e2db293bac0a (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
<?php
/**
 * Elgg comments add form
 *
 * @package Elgg
 *
 * @uses $vars['entity']
 */


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/hidden', array(
			'name' => 'entity_guid',
			'value' => $vars['entity']->getGUID()
		));
		echo elgg_view('input/submit', array('value' => elgg_echo('comment')));
	} else {
?>
		<div class="mbn">
			<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/hidden', array(
			'name' => 'entity_guid',
			'value' => $vars['entity']->getGUID()
		));
		echo elgg_view('input/submit', array('value' => elgg_echo("generic_comments:post")));
	}
}