diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-09 17:38:35 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-09 17:38:35 +0000 |
commit | e437ae2cb2beee77518a32d7d22f989ac54f72b7 (patch) | |
tree | 919c36fd043ab7e7e637ed82f207f6a7e291baad /engine | |
parent | c9dfe4059a3ee6ac91de6efc5476a46e8d2a10d9 (diff) | |
download | elgg-e437ae2cb2beee77518a32d7d22f989ac54f72b7.tar.gz elgg-e437ae2cb2beee77518a32d7d22f989ac54f72b7.tar.bz2 |
Closes #560: Pagination parameters added.
git-svn-id: https://code.elgg.org/elgg/trunk@2557 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/users.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 0628f36c7..fc8961baa 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -637,14 +637,14 @@ * @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, $fullview = true) {
+ function list_user_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = 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, $fullview);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle, $pagination);
}
@@ -698,14 +698,14 @@ * @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, $viewtypetoggle = true) {
+ function list_user_friends_objects($user_guid, $subtype = "", $limit = 10, $fullview = true, $viewtypetoggle = true, $pagination = 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, $viewtypetoggle);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview, $viewtypetoggle, $pagination);
}
|