diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-24 01:10:54 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-24 01:10:54 +0000 |
commit | 7c19b14d1ff91e2477164f90f559673716cd9bdd (patch) | |
tree | 0464ab9c280826c24626f8774de5693cda241633 | |
parent | 57bff80b4c5ff1db536c2c73e8a533c47c3ad912 (diff) | |
download | elgg-7c19b14d1ff91e2477164f90f559673716cd9bdd.tar.gz elgg-7c19b14d1ff91e2477164f90f559673716cd9bdd.tar.bz2 |
fixes #935
git-svn-id: http://code.elgg.org/elgg/trunk@3702 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/entities.php | 6 |
1 files changed, 4 insertions, 2 deletions
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); } /** |