diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
commit | 41fed2568509d6eb581be9aa1df000b25b079d63 (patch) | |
tree | f318c78f1337d944a0aaf4798db17b5ebf4c30fc /engine/lib/users.php | |
parent | 689c997f58b25df81164df9acdf5ebd9c1ad2bc9 (diff) | |
download | elgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.gz elgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.bz2 |
Added a 'display full view' parameter to all of the listings functions
git-svn-id: https://code.elgg.org/elgg/trunk@1170 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r-- | engine/lib/users.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 554ada22b..60d279ebf 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -535,16 +535,17 @@ * @param int $user_guid The GUID of the user
* @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)
* @return string The list in a form suitable to display
*/
- function list_user_objects($user_guid, $subtype = "", $limit = 10) {
+ function list_user_objects($user_guid, $subtype = "", $limit = 10, $fullview = true) {
$offset = (int) get_input('offset');
$limit = (int) $limit;
$count = (int) count_user_objects($user_guid, $subtype);
$entities = get_user_objects($user_guid, $subtype, $limit, $offset);
- return elgg_view_entity_list($entities, $count, $offset, $limit);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview);
}
@@ -594,16 +595,17 @@ * @param int $user_guid The GUID of the user
* @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)
* @return string The list in a form suitable to display
*/
- function list_user_friends_objects($user_guid, $subtype = "", $limit = 10) {
+ function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = 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);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview);
}
|