X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/f12b52ab39f154152b668b4bd87d02962f3b762d..882347cba815e99ba8e7ad28d077420aa986e7c5:/login/list.php diff --git a/login/list.php b/login/list.php index 1f049d8..698b805 100644 --- a/login/list.php +++ b/login/list.php @@ -8,24 +8,37 @@ foreach ($users as $col => $userdir) { $users[$col] = new User($userdir); } -if (@$Place['order'] == 'seen') { - $order = array_map(function ($col) { return $col->seen; }, $users); -# $order = array_column($users, 'seen'); #TODO php7 simplification - array_multisort($order, SORT_DESC, SORT_NUMERIC, $users); +if (isset($Place['order'])) { + $ordercol = $Place['order']; + $order = array_map(function ($row) use ($ordercol) { + return $row->$ordercol; + }, $users); +# $order = array_column($users, $ordercol); #TODO php7 simplification + if ($ordercol == 'seen') { + array_multisort($order, SORT_DESC, SORT_NUMERIC, $users); + $users = array_intersect_key($users, array_filter($order)); + } + else { + array_multisort($order, SORT_ASC, SORT_NATURAL, $users); + } +} + +if (isset($Place['n'])) { + array_splice($users, $Place['n']); # limit number of results } print ' 5) { print ' class="cols"'; } print ">\n"; foreach ($users as $user) { $name = $user->name ?: $user->login; - if (!empty($GLOBALS['User']['admin'])) { + if ($GLOBALS['User'] and $GLOBALS['User']->admin) { $link = '/login/edit/'.$user->login; $name = sprintf('%s', $link, $name); } @@ -52,8 +65,9 @@ foreach ($users as $user) { # continue to default default: if ($user->admin) { - $name .= ' (beheerder)'; + $name .= ' 🔧'; } + $name = "
$name
"; } print "
  • $name
  • \n";