aboutsummaryrefslogtreecommitdiff
path: root/views/default/river/item/footer.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-12 23:52:23 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-12 23:52:23 +0000
commit3e49786bc6e271867fc57d7725905452ba280842 (patch)
tree3cefcaa44dfcd38df30836ad47ba13729bac80eb /views/default/river/item/footer.php
parentc194b2ad8b99621c5bd7bf32f68d3c3d2399073c (diff)
downloadelgg-3e49786bc6e271867fc57d7725905452ba280842.tar.gz
elgg-3e49786bc6e271867fc57d7725905452ba280842.tar.bz2
somehow we forgot to use 'elements' in river views
git-svn-id: http://code.elgg.org/elgg/trunk@8679 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/river/item/footer.php')
-rw-r--r--views/default/river/item/footer.php52
1 files changed, 0 insertions, 52 deletions
diff --git a/views/default/river/item/footer.php b/views/default/river/item/footer.php
deleted file mode 100644
index 7cf9dd925..000000000
--- a/views/default/river/item/footer.php
+++ /dev/null
@@ -1,52 +0,0 @@
-<?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
-echo elgg_view_form('comments/add', array(
- 'id' => "comments-add-{$object->getGUID()}",
-), array('entity' => $object, 'inline' => true));