aboutsummaryrefslogtreecommitdiffstats
path: root/mod/admin.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-17 16:21:11 -0700
committerFriendika <info@friendika.com>2011-06-17 16:21:11 -0700
commit484b248f735b22e7a28f4720c3997746f5c10ced (patch)
tree4a9ebe4cc0df707acefcaa82373d14e08043a077 /mod/admin.php
parent4ca730e5d73b2e7a29b28f9759f43e2d521c7ff1 (diff)
downloadvolse-hubzilla-484b248f735b22e7a28f4720c3997746f5c10ced.tar.gz
volse-hubzilla-484b248f735b22e7a28f4720c3997746f5c10ced.tar.bz2
volse-hubzilla-484b248f735b22e7a28f4720c3997746f5c10ced.zip
add pagination to admin/user page to support large numbers of users
Diffstat (limited to 'mod/admin.php')
-rw-r--r--mod/admin.php20
1 files changed, 16 insertions, 4 deletions
diff --git a/mod/admin.php b/mod/admin.php
index e657c8053..e452ea856 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -385,6 +385,13 @@ function admin_page_users(&$a){
LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;");
/* get users */
+
+ $total = q("SELECT count(*) as total FROM `user` where 1");
+ if(count($total)) {
+ $a->set_pager_total($total[0]['total']);
+ $a->set_pager_itemspage(100);
+ }
+
$users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro` , `lastitem`.`changed` AS `lastitem_date`
FROM (
SELECT `item`.`changed` , `item`.`uid`
@@ -396,8 +403,12 @@ function admin_page_users(&$a){
WHERE `user`.`verified` =1
AND `contact`.`self` =1
AND `lastitem`.`uid` = `user`.`uid`
- ORDER BY `contact`.`name`
- ");
+ ORDER BY `contact`.`name` LIMIT %d, %d
+ ",
+ intval($a->pager['start']),
+ intval($a->pager['itemspage'])
+
+ );
function _setup_users($e){
$accounts = Array(
@@ -415,7 +426,7 @@ function admin_page_users(&$a){
$users = array_map("_setup_users", $users);
$t = get_markup_template("admin_users.tpl");
- return replace_macros($t, array(
+ $o = replace_macros($t, array(
// strings //
'$title' => t('Administration'),
'$page' => t('Users'),
@@ -443,7 +454,8 @@ function admin_page_users(&$a){
'$pending' => $pending,
'$users' => $users,
));
-
+ $o .= paginate($a);
+ return $o;
}