From e437ae2cb2beee77518a32d7d22f989ac54f72b7 Mon Sep 17 00:00:00 2001 From: marcus Date: Fri, 9 Jan 2009 17:38:35 +0000 Subject: Closes #560: Pagination parameters added. git-svn-id: https://code.elgg.org/elgg/trunk@2557 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/users.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engine') diff --git a/engine/lib/users.php b/engine/lib/users.php index 0628f36c7..fc8961baa 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -637,14 +637,14 @@ * @param true|false $fullview Whether or not to display the full view (default: true) * @return string The list in a form suitable to display */ - function list_user_objects($user_guid, $subtype = "", $limit = 10, $fullview = true) { + function list_user_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = true) { $offset = (int) get_input('offset'); $limit = (int) $limit; $count = (int) count_user_objects($user_guid, $subtype); $entities = get_user_objects($user_guid, $subtype, $limit, $offset); - return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview); + return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle, $pagination); } @@ -698,14 +698,14 @@ * @param true|false $viewtypetoggle Whether or not to allow you to flip to gallery mode (default: true) * @return string The list in a form suitable to display */ - function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true) { + function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = true) { $offset = (int) get_input('offset'); $limit = (int) $limit; $count = (int) count_user_friends_objects($user_guid, $subtype); $entities = get_user_friends_objects($user_guid, $subtype, $limit, $offset); - return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle); + return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle, $pagination); } -- cgit v1.2.3