From d8e7579df3f89587f1a43b64d9bd9a76b6842d5e Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 21 Mar 2011 02:14:06 +0000 Subject: Refs #2090 removed elgg_view_latest_comments() and replaced it with a page elements view git-svn-id: http://code.elgg.org/elgg/trunk@8801 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/views.php | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'engine/lib/views.php') diff --git a/engine/lib/views.php b/engine/lib/views.php index e74a286da..98edf1502 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1105,39 +1105,6 @@ function elgg_view_comments($entity, $add_comment = true, array $vars = array()) } } -/** - * View the latest comments on a user's content - * - * @todo - get_annotations is due to be rewritten so update code and possibly parameters - * - * @param $owner_guid - * @param $type - * @param $subtype - * @param $number - * - * @return string - * @since 1.8.0 - */ -function elgg_view_latest_comments($owner_guid, $type = 'object', $subtype = '', $number = 4) { - $title = elgg_echo('generic_comments:latest'); - $options = array( - 'annotation_name' => 'generic_comment', - 'owner_guid' => $owner_guid, - 'reverse_order_by' => true, - 'limit' => $number - - ); - $comments = elgg_get_annotations($options); - - $body = elgg_view('page/components/list', array( - 'items' => $comments, - 'pagination' => false, - 'list_class' => 'elgg-latest-comments', - )); - - return elgg_view_module('aside', $title, $body); -} - /** * Wrapper function for the image block display pattern. * -- cgit v1.2.3