From 18ab963fca3faa29e62eddca8ce4f52029c0495c Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 6 Oct 2008 15:14:58 +0000 Subject: List_user_friends_objects now lets you hide the toggle to gallery view git-svn-id: https://code.elgg.org/elgg/trunk@2190 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/users.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engine') diff --git a/engine/lib/users.php b/engine/lib/users.php index a0b3aad26..a63996fef 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -589,16 +589,17 @@ * @param string $subtype The object subtype * @param int $limit The number of entities to display on a page * @param true|false $fullview Whether or not to display the full view (default: true) + * @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) { + function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = 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); + return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle); } -- cgit v1.2.3