From 7c19b14d1ff91e2477164f90f559673716cd9bdd Mon Sep 17 00:00:00 2001 From: cash Date: Tue, 24 Nov 2009 01:10:54 +0000 Subject: fixes #935 git-svn-id: http://code.elgg.org/elgg/trunk@3702 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'engine/lib') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index bcf045760..1ac8b37bb 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -2211,14 +2211,16 @@ function list_entities($type= "", $subtype = "", $owner_guid = 0, $limit = 10, $ * @param int $container_guid The GUID of the containing group * @param int $limit The number of entities to display per page (default: 10) * @param true|false $fullview Whether or not to display the full view (default: true) + * @param true|false $viewtypetoggle Whether or not to allow gallery view (default: true) + * @param true|false $pagination Whether to display pagination (default: true) * @return string A viewable list of entities */ -function list_entities_groups($subtype = "", $owner_guid = 0, $container_guid = 0, $limit = 10, $fullview = true) { +function list_entities_groups($subtype = "", $owner_guid = 0, $container_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = true) { $offset = (int) get_input('offset'); $count = get_objects_in_group($container_guid, $subtype, $owner_guid, 0, "", $limit, $offset, true); $entities = get_objects_in_group($container_guid, $subtype, $owner_guid, 0, "", $limit, $offset); - return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview); + return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle, $pagination); } /** -- cgit v1.2.3