mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
aa1c2e2382
Create or update the breadcrumbs in the site administration pages where it is required. Highlight the corresponding site adminstration tab. Highlight the primary nav to Site administration when user is navigating to any of the site administration pages. Also changed the boostnavbar so that the nodes in the secondary navigation are not shown in the breadcrumbs when user is in site administration page.
92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
<?php
|
|
|
|
require_once('../../config.php');
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
|
|
$sort = optional_param('sort', 'fullname', PARAM_ALPHA);
|
|
$dir = optional_param('dir', 'asc', PARAM_ALPHA);
|
|
|
|
admin_externalpage_setup('userbulk');
|
|
|
|
$return = $CFG->wwwroot.'/'.$CFG->admin.'/user/user_bulk.php';
|
|
|
|
if (empty($SESSION->bulk_users)) {
|
|
redirect($return);
|
|
}
|
|
|
|
$users = $SESSION->bulk_users;
|
|
$usertotal = get_users(false);
|
|
$usercount = count($users);
|
|
|
|
$strnever = get_string('never');
|
|
|
|
$PAGE->set_primary_active_tab('siteadminnode');
|
|
$PAGE->set_secondary_active_tab('users');
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
$countries = get_string_manager()->get_list_of_countries(true);
|
|
|
|
$userfieldsapi = \core_user\fields::for_name();
|
|
$namefields = $userfieldsapi->get_sql('', false, '', '', false)->selects;
|
|
foreach ($users as $key => $id) {
|
|
$user = $DB->get_record('user', array('id'=>$id), 'id, ' . $namefields . ', username, email, country, lastaccess, city');
|
|
$user->fullname = fullname($user, true);
|
|
$user->country = @$countries[$user->country];
|
|
unset($user->firstname);
|
|
unset($user->lastname);
|
|
$users[$key] = $user;
|
|
}
|
|
unset($countries);
|
|
|
|
// Need to sort by date
|
|
function sort_compare($a, $b) {
|
|
global $sort, $dir;
|
|
if($sort == 'lastaccess') {
|
|
$rez = $b->lastaccess - $a->lastaccess;
|
|
} else {
|
|
$rez = strcasecmp(@$a->$sort, @$b->$sort);
|
|
}
|
|
return $dir == 'desc' ? -$rez : $rez;
|
|
}
|
|
usort($users, 'sort_compare');
|
|
|
|
$table = new html_table();
|
|
$table->width = "95%";
|
|
$columns = array('fullname', /*'username', */'email', 'city', 'country', 'lastaccess');
|
|
foreach ($columns as $column) {
|
|
$strtitle = get_string($column);
|
|
if ($sort != $column) {
|
|
$columnicon = '';
|
|
$columndir = 'asc';
|
|
} else {
|
|
$columndir = $dir == 'asc' ? 'desc' : 'asc';
|
|
$icon = 't/down';
|
|
$iconstr = $columndir;
|
|
if ($dir != 'asc') {
|
|
$icon = 't/up';
|
|
}
|
|
$columnicon = ' ' . $OUTPUT->pix_icon($icon, get_string($iconstr));
|
|
}
|
|
$table->head[] = '<a href="user_bulk_display.php?sort='.$column.'&dir='.$columndir.'">'.$strtitle.'</a>'.$columnicon;
|
|
$table->align[] = 'left';
|
|
}
|
|
|
|
foreach($users as $user) {
|
|
$table->data[] = array (
|
|
'<a href="'.$CFG->wwwroot.'/user/view.php?id='.$user->id.'&course='.SITEID.'">'.$user->fullname.'</a>',
|
|
// $user->username,
|
|
s($user->email),
|
|
$user->city,
|
|
$user->country,
|
|
$user->lastaccess ? format_time(time() - $user->lastaccess) : $strnever
|
|
);
|
|
}
|
|
|
|
echo $OUTPUT->heading("$usercount / $usertotal ".get_string('users'));
|
|
echo html_writer::table($table);
|
|
|
|
echo $OUTPUT->continue_button($return);
|
|
|
|
echo $OUTPUT->footer();
|