From 5041c6c48153453ed597206d08eeff37cf20e676 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 15 Mar 2014 14:46:48 -0300 Subject: Squashed 'mod/cool_theme/' content from commit a26f7df git-subtree-dir: mod/cool_theme git-subtree-split: a26f7df43a266f7d1ff04847da330d15f6041e9b --- views/default/discussion/river_footer.php | 51 +++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 views/default/discussion/river_footer.php (limited to 'views/default/discussion/river_footer.php') diff --git a/views/default/discussion/river_footer.php b/views/default/discussion/river_footer.php new file mode 100644 index 000000000..65605026b --- /dev/null +++ b/views/default/discussion/river_footer.php @@ -0,0 +1,51 @@ +action_type !== 'create') { + return true; +} + +$object = $vars['item']->getObjectEntity(); + +$replies_options = array( + 'guid' => $object->getGUID(), + 'annotation_name' => 'group_topic_post', + 'limit' => 3, + 'order_by' => 'n_table.time_created desc' +); + +$replies = elgg_get_annotations($replies_options); + +if ($replies) { + // why is this reversing it? because we're asking for the 3 latest + // replies by sorting desc and limiting by 3, but we want to display + // these replies with the latest at the bottom. + $replies = array_reverse($replies); + + $replies_options['count'] = TRUE; + + $reply_count = elgg_get_annotations($replies_options); + + // If greater that 3 replies, link to the rest of them + if ($reply_count > count($replies)) { + $link = elgg_view('output/url', array( + 'href' => $object->getURL(), + 'text' => elgg_echo('river:replies:all', array($reply_count)), + )); + + echo elgg_view_image_block(elgg_view_icon('speech-bubble-alt'), $link, array('class' => 'elgg-river-participation')); + } + + // Display the latest + echo elgg_view_annotation_list($replies, array('list_class' => 'elgg-river-replies', 'item_class' => 'elgg-river-participation')); + +} + + +if ($object->canAnnotate(0, 'group_topic_post')) { + // inline reply form + $form_vars = array('id' => "groups-reply-{$object->getGUID()}", 'class' => 'elgg-form-small elgg-river-participation'); + $body_vars = array('entity' => $object, 'inline' => true); + echo elgg_view_form('discussion/reply/save', $form_vars, $body_vars); +} \ No newline at end of file -- cgit v1.2.3