aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-09 12:15:04 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-09 12:15:04 +0000
commit10c02af267eee4098a525930ebfe6984beb9d197 (patch)
tree5fadf12e4a0ca8a39c5dbbdc018091f7ec295b9f
parent094aa1f380e65926ad01d801abecaba1b92ed528 (diff)
downloadelgg-10c02af267eee4098a525930ebfe6984beb9d197.tar.gz
elgg-10c02af267eee4098a525930ebfe6984beb9d197.tar.bz2
Introducing list_entities_groups()
git-svn-id: https://code.elgg.org/elgg/trunk@1351 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--engine/lib/entities.php19
1 files changed, 19 insertions, 0 deletions
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);
}
/**