]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
fixes #935
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 24 Nov 2009 01:10:54 +0000 (01:10 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 24 Nov 2009 01:10:54 +0000 (01:10 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@3702 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/entities.php

index bcf0457608244f9e9fdb6bb05cb38d7fb4c7cb98..1ac8b37bb0c2111a9d839d3ab5fb964f180cd8ce 100644 (file)
@@ -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);
 }
 
 /**