diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-24 07:32:27 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-24 07:32:27 -0400 |
commit | 9edc8c6004d1236a21e03fb1c820a6e749f1ee3b (patch) | |
tree | 3defb2dc56e726c314b4d92d43744faf4d52bd48 /views/default/river/elements/responses.php | |
parent | 344e47862b1f39eca19e39a000f97f799cc87a12 (diff) | |
parent | 5e02fd697fd15ae857aa0c2969fd9ea92043a55a (diff) | |
download | elgg-9edc8c6004d1236a21e03fb1c820a6e749f1ee3b.tar.gz elgg-9edc8c6004d1236a21e03fb1c820a6e749f1ee3b.tar.bz2 |
Merge pull request #35 - Fixes #3404, #3490
Diffstat (limited to 'views/default/river/elements/responses.php')
-rw-r--r-- | views/default/river/elements/responses.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/views/default/river/elements/responses.php b/views/default/river/elements/responses.php new file mode 100644 index 000000000..f1e79f131 --- /dev/null +++ b/views/default/river/elements/responses.php @@ -0,0 +1,52 @@ +<?php +/** + * River item footer + */ + +$item = $vars['item']; +$object = $item->getObjectEntity(); + +// annotations do not have comments +if ($item->annotation_id != 0 || !$object) { + return true; +} + +$comment_count = $object->countComments(); + +$options = array( + 'guid' => $object->getGUID(), + 'annotation_name' => 'generic_comment', + 'limit' => 3, + 'order_by' => 'n_table.time_created desc' +); +$comments = elgg_get_annotations($options); + +if ($comments) { + // why is this reversing it? because we're asking for the 3 latest + // comments by sorting desc and limiting by 3, but we want to display + // these comments with the latest at the bottom. + $comments = array_reverse($comments); + +?> + <span class="elgg-river-comments-tab"><?php echo elgg_echo('comments'); ?></span> + +<?php + + echo elgg_view_annotation_list($comments, array('list_class' => 'elgg-river-comments')); + + if ($comment_count > count($comments)) { + $num_more_comments = $comment_count - count($comments); + $url = $object->getURL(); + $params = array( + 'href' => $url, + 'text' => elgg_echo('river:comments:more', array($num_more_comments)), + ); + $link = elgg_view('output/url', $params); + echo "<div class=\"elgg-river-more\">$link</div>"; + } +} + +// inline comment form +$form_vars = array('id' => "comments-add-{$object->getGUID()}", 'class' => 'hidden'); +$body_vars = array('entity' => $object, 'inline' => true); +echo elgg_view_form('comments/add', $form_vars, $body_vars); |