diff options
Diffstat (limited to 'all.php')
-rw-r--r-- | all.php | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |