From 10c02af267eee4098a525930ebfe6984beb9d197 Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 9 Jul 2008 12:15:04 +0000 Subject: Introducing list_entities_groups() git-svn-id: https://code.elgg.org/elgg/trunk@1351 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'engine') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 47ff916f8..1a0f78249 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1138,6 +1138,25 @@ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview); + } + + /** + * Returns a viewable list of entities contained in a number of groups. + * + * @param string $subtype The arbitrary subtype of the entity + * @param int $owner_guid The GUID of the owning user + * @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) + * @return string A viewable list of entities + */ + function list_entities_groups($subtype = "", $owner_guid = 0, $container_guid = 0, $limit = 10, $fullview = 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); } /** -- cgit v1.2.3