aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-06 15:14:58 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-06 15:14:58 +0000
commit18ab963fca3faa29e62eddca8ce4f52029c0495c (patch)
tree139d2951bc607a6c99e65bd23376f14af7b0f467 /engine
parent47a202fac7dae828f6e2f195b730338efa68f357 (diff)
downloadelgg-18ab963fca3faa29e62eddca8ce4f52029c0495c.tar.gz
elgg-18ab963fca3faa29e62eddca8ce4f52029c0495c.tar.bz2
List_user_friends_objects now lets you hide the toggle to gallery view
git-svn-id: https://code.elgg.org/elgg/trunk@2190 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/users.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php
index a0b3aad26..a63996fef 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -589,16 +589,17 @@
* @param string $subtype The object subtype
* @param int $limit The number of entities to display on a page
* @param true|false $fullview Whether or not to display the full view (default: true)
+ * @param true|false $viewtypetoggle Whether or not to allow you to flip to gallery mode (default: true)
* @return string The list in a form suitable to display
*/
- function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true) {
+ function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true) {
$offset = (int) get_input('offset');
$limit = (int) $limit;
$count = (int) count_user_friends_objects($user_guid, $subtype);
$entities = get_user_friends_objects($user_guid, $subtype, $limit, $offset);
- return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle);
}