aboutsummaryrefslogtreecommitdiff
path: root/all.php
diff options
context:
space:
mode:
Diffstat (limited to 'all.php')
-rw-r--r--all.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/all.php b/all.php
index c1be98767..26aefb594 100644
--- a/all.php
+++ b/all.php
@@ -30,6 +30,10 @@ $area2 .= elgg_list_entities(array('types' => 'object', 'subtypes' => 'videolist
// include a view for plugins to extend
$area3 .= elgg_view("videolist/sidebar", array("object_type" => 'videolist'));
+// get the latest comments on all videos
+$comments = get_annotations(0, "object", "videolist", "generic_comment", "", 0, 4, 0, "desc");
+$area3 .= elgg_view('annotation/latest_comments', array('comments' => $comments));
+
set_context('videolist');
$body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3);