From 01afda7ed87e7def6a411d871daf49522e977b26 Mon Sep 17 00:00:00 2001 From: cash Date: Thu, 24 Feb 2011 00:12:17 +0000 Subject: organized the river views according to the subview pattern git-svn-id: http://code.elgg.org/elgg/trunk@8452 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/river/item/footer.php | 52 +++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 views/default/river/item/footer.php (limited to 'views/default/river/item/footer.php') diff --git a/views/default/river/item/footer.php b/views/default/river/item/footer.php new file mode 100644 index 000000000..7cf9dd925 --- /dev/null +++ b/views/default/river/item/footer.php @@ -0,0 +1,52 @@ +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); + +?> + + + '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 "
$link
"; + } +} + +// inline comment form +echo elgg_view_form('comments/add', array( + 'id' => "comments-add-{$object->getGUID()}", +), array('entity' => $object, 'inline' => true)); -- cgit v1.2.3