blob: 2bfb6f0cd498979fa9cdf154b3391e916c763552 (
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
|
<?php
/**
* List replies with optional add form
*
* @uses $vars['entity'] ElggEntity
* @uses $vars['show_add_form'] Display add form or not
*/
$show_add_form = elgg_extract('show_add_form', $vars, true);
echo '<div id="group-replies" class="mtl">';
$options = array(
'guid' => $vars['entity']->getGUID(),
'annotation_name' => 'group_topic_post',
);
$html = elgg_list_annotations($options);
if ($html) {
echo '<h3>' . elgg_echo('group:replies') . '</h3>';
echo $html;
}
if ($show_add_form) {
$form_vars = array('class' => 'mtm');
echo elgg_view_form('discussion/reply/save', $form_vars, $vars);
}
echo '</div>';
|