2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Lists all the users within a given course.
20 * @copyright 1999 Martin Dougiamas http://dougiamas.com
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once('../config.php');
26 require_once($CFG->dirroot
.'/user/lib.php');
27 require_once($CFG->libdir
.'/tablelib.php');
28 require_once($CFG->libdir
.'/filelib.php');
30 define('USER_SMALL_CLASS', 20); // Below this is considered small.
31 define('USER_LARGE_CLASS', 200); // Above this is considered large.
32 define('DEFAULT_PAGE_SIZE', 20);
33 define('SHOW_ALL_PAGE_SIZE', 5000);
34 define('MODE_BRIEF', 0);
35 define('MODE_USERDETAILS', 1);
37 $page = optional_param('page', 0, PARAM_INT
); // Which page to show.
38 $perpage = optional_param('perpage', DEFAULT_PAGE_SIZE
, PARAM_INT
); // How many per page.
39 $mode = optional_param('mode', null, PARAM_INT
); // Use the MODE_ constants.
40 $accesssince = optional_param('accesssince', 0, PARAM_INT
); // Filter by last access. -1 = never.
41 $search = optional_param('search', '', PARAM_RAW
); // Make sure it is processed with p() or s() when sending to output!
42 $roleid = optional_param('roleid', 0, PARAM_INT
); // Optional roleid, 0 means all enrolled users (or all on the frontpage).
43 $contextid = optional_param('contextid', 0, PARAM_INT
); // One of this or.
44 $courseid = optional_param('id', 0, PARAM_INT
); // This are required.
46 $PAGE->set_url('/user/index.php', array(
48 'perpage' => $perpage,
50 'accesssince' => $accesssince,
53 'contextid' => $contextid,
57 $context = context
::instance_by_id($contextid, MUST_EXIST
);
58 if ($context->contextlevel
!= CONTEXT_COURSE
) {
59 print_error('invalidcontext');
61 $course = $DB->get_record('course', array('id' => $context->instanceid
), '*', MUST_EXIST
);
63 $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST
);
64 $context = context_course
::instance($course->id
, MUST_EXIST
);
66 // Not needed anymore.
70 require_login($course);
72 $systemcontext = context_system
::instance();
73 $isfrontpage = ($course->id
== SITEID
);
75 $frontpagectx = context_course
::instance(SITEID
);
78 $PAGE->set_pagelayout('admin');
79 require_capability('moodle/site:viewparticipants', $systemcontext);
81 $PAGE->set_pagelayout('incourse');
82 require_capability('moodle/course:viewparticipants', $context);
85 $rolenamesurl = new moodle_url("$CFG->wwwroot/user/index.php?contextid=$context->id&sifirst=&silast=");
87 $rolenames = role_fix_names(get_profile_roles($context), $context, ROLENAME_ALIAS
, true);
89 $rolenames[0] = get_string('allsiteusers', 'role');
91 $rolenames[0] = get_string('allparticipants');
94 // Make sure other roles may not be selected by any means.
95 if (empty($rolenames[$roleid])) {
96 print_error('noparticipants');
99 // No roles to display yet?
100 // frontpage course is an exception, on the front page course we should display all users.
101 if (empty($rolenames) && !$isfrontpage) {
102 if (has_capability('moodle/role:assign', $context)) {
103 redirect($CFG->wwwroot
.'/'.$CFG->admin
.'/roles/assign.php?contextid='.$context->id
);
105 print_error('noparticipants');
110 user_list_view($course, $context);
112 $bulkoperations = has_capability('moodle/course:bulkmessaging', $context);
114 $countries = get_string_manager()->get_list_of_countries();
116 $strnever = get_string('never');
118 $datestring = new stdClass();
119 $datestring->year
= get_string('year');
120 $datestring->years
= get_string('years');
121 $datestring->day
= get_string('day');
122 $datestring->days
= get_string('days');
123 $datestring->hour
= get_string('hour');
124 $datestring->hours
= get_string('hours');
125 $datestring->min
= get_string('min');
126 $datestring->mins
= get_string('mins');
127 $datestring->sec
= get_string('sec');
128 $datestring->secs
= get_string('secs');
130 if ($mode !== null) {
132 $SESSION->userindexmode
= $mode;
133 } else if (isset($SESSION->userindexmode
)) {
134 $mode = (int)$SESSION->userindexmode
;
139 // Check to see if groups are being used in this course
140 // and if so, set $currentgroup to reflect the current group.
142 $groupmode = groups_get_course_groupmode($course); // Groups are being used.
143 $currentgroup = groups_get_course_group($course, true);
145 if (!$currentgroup) { // To make some other functions work better later.
146 $currentgroup = null;
149 $isseparategroups = ($course->groupmode
== SEPARATEGROUPS
and !has_capability('moodle/site:accessallgroups', $context));
151 $PAGE->set_title("$course->shortname: ".get_string('participants'));
152 $PAGE->set_heading($course->fullname
);
153 $PAGE->set_pagetype('course-view-' . $course->format
);
154 $PAGE->add_body_class('path-user'); // So we can style it independently.
155 $PAGE->set_other_editing_capability('moodle/course:manageactivities');
157 echo $OUTPUT->header();
158 echo $OUTPUT->heading(get_string('participants'));
160 echo '<div class="userlist">';
162 if ($isseparategroups and (!$currentgroup) ) {
163 // The user is not in the group so show message and exit.
164 echo $OUTPUT->heading(get_string("notingroup"));
165 echo $OUTPUT->footer();
170 // Should use this variable so that we don't break stuff every time a variable is added or changed.
171 $baseurl = new moodle_url('/user/index.php', array(
172 'contextid' => $context->id
,
175 'perpage' => $perpage,
176 'accesssince' => $accesssince,
177 'search' => s($search)));
180 if ($course->id
== SITEID
) {
181 $filtertype = 'site';
182 } else if ($course->id
&& !$currentgroup) {
183 $filtertype = 'course';
184 $filterselect = $course->id
;
186 $filtertype = 'group';
187 $filterselect = $currentgroup;
192 // Get the hidden field list.
193 if (has_capability('moodle/course:viewhiddenuserfields', $context)) {
194 $hiddenfields = array(); // Teachers and admins are allowed to see everything.
196 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields
));
199 if (isset($hiddenfields['lastaccess'])) {
200 // Do not allow access since filtering.
204 // Print settings and things in a table across the top.
205 $controlstable = new html_table();
206 $controlstable->attributes
['class'] = 'controls';
207 $controlstable->cellspacing
= 0;
208 $controlstable->data
[] = new html_table_row();
210 // Print my course menus.
211 if ($mycourses = enrol_get_my_courses()) {
212 $courselist = array();
213 $popupurl = new moodle_url('/user/index.php?roleid='.$roleid.'&sifirst=&silast=');
214 foreach ($mycourses as $mycourse) {
215 $coursecontext = context_course
::instance($mycourse->id
);
216 $courselist[$mycourse->id
] = format_string($mycourse->shortname
, true, array('context' => $coursecontext));
218 if (has_capability('moodle/site:viewparticipants', $systemcontext)) {
219 unset($courselist[SITEID
]);
220 $courselist = array(SITEID
=> format_string($SITE->shortname
, true, array('context' => $systemcontext))) +
$courselist;
222 $select = new single_select($popupurl, 'id', $courselist, $course->id
, null, 'courseform');
223 $select->set_label(get_string('mycourses'));
224 $controlstable->data
[0]->cells
[] = $OUTPUT->render($select);
227 if ($groupmenu = groups_print_course_menu($course, $baseurl->out(), true)) {
228 $controlstable->data
[0]->cells
[] = $groupmenu;
231 if (!isset($hiddenfields['lastaccess'])) {
232 // Get minimum lastaccess for this course and display a dropbox to filter by lastaccess going back this far.
233 // We need to make it diferently for normal courses and site course.
235 $minlastaccess = $DB->get_field_sql('SELECT min(timeaccess)
236 FROM {user_lastaccess}
238 AND timeaccess != 0', array($course->id
));
239 $lastaccess0exists = $DB->record_exists('user_lastaccess', array('courseid' => $course->id
, 'timeaccess' => 0));
241 $minlastaccess = $DB->get_field_sql('SELECT min(lastaccess)
243 WHERE lastaccess != 0');
244 $lastaccess0exists = $DB->record_exists('user', array('lastaccess' => 0));
247 $now = usergetmidnight(time());
248 $timeaccess = array();
249 $baseurl->remove_params('accesssince');
251 // Makes sense for this to go first.
252 $timeoptions[0] = get_string('selectperiod');
255 for ($i = 1; $i < 7; $i++
) {
256 if (strtotime('-'.$i.' days', $now) >= $minlastaccess) {
257 $timeoptions[strtotime('-'.$i.' days', $now)] = get_string('numdays', 'moodle', $i);
261 for ($i = 1; $i < 10; $i++
) {
262 if (strtotime('-'.$i.' weeks', $now) >= $minlastaccess) {
263 $timeoptions[strtotime('-'.$i.' weeks', $now)] = get_string('numweeks', 'moodle', $i);
267 for ($i = 2; $i < 12; $i++
) {
268 if (strtotime('-'.$i.' months', $now) >= $minlastaccess) {
269 $timeoptions[strtotime('-'.$i.' months', $now)] = get_string('nummonths', 'moodle', $i);
273 if (strtotime('-1 year', $now) >= $minlastaccess) {
274 $timeoptions[strtotime('-1 year', $now)] = get_string('lastyear');
277 if (!empty($lastaccess0exists)) {
278 $timeoptions[-1] = get_string('never');
281 if (count($timeoptions) > 1) {
282 $select = new single_select($baseurl, 'accesssince', $timeoptions, $accesssince, null, 'timeoptions');
283 $select->set_label(get_string('usersnoaccesssince'));
284 $controlstable->data
[0]->cells
[] = $OUTPUT->render($select);
288 $formatmenu = array( '0' => get_string('brief'),
289 '1' => get_string('userdetails'));
290 $select = new single_select($baseurl, 'mode', $formatmenu, $mode, null, 'formatmenu');
291 $select->set_label(get_string('userlist'));
292 $userlistcell = new html_table_cell();
293 $userlistcell->attributes
['class'] = 'right';
294 $userlistcell->text
= $OUTPUT->render($select);
295 $controlstable->data
[0]->cells
[] = $userlistcell;
297 echo html_writer
::table($controlstable);
299 if ($currentgroup and (!$isseparategroups or has_capability('moodle/site:accessallgroups', $context))) {
300 // Display info about the group.
301 if ($group = groups_get_group($currentgroup)) {
302 if (!empty($group->description
) or (!empty($group->picture
) and empty($group->hidepicture
))) {
303 $groupinfotable = new html_table();
304 $groupinfotable->attributes
['class'] = 'groupinfobox';
305 $picturecell = new html_table_cell();
306 $picturecell->attributes
['class'] = 'left side picture';
307 $picturecell->text
= print_group_picture($group, $course->id
, true, true, false);
309 $contentcell = new html_table_cell();
310 $contentcell->attributes
['class'] = 'content';
312 $contentheading = $group->name
;
313 if (has_capability('moodle/course:managegroups', $context)) {
314 $aurl = new moodle_url('/group/group.php', array('id' => $group->id
, 'courseid' => $group->courseid
));
315 $contentheading .= ' ' . $OUTPUT->action_icon($aurl, new pix_icon('t/edit', get_string('editgroupprofile')));
318 $group->description
= file_rewrite_pluginfile_urls($group->description
, 'pluginfile.php', $context->id
, 'group',
319 'description', $group->id
);
320 if (!isset($group->descriptionformat
)) {
321 $group->descriptionformat
= FORMAT_MOODLE
;
323 $options = array('overflowdiv' => true);
324 $formatteddesc = format_text($group->description
, $group->descriptionformat
, $options);
325 $contentcell->text
= $OUTPUT->heading($contentheading, 3) . $formatteddesc;
326 $groupinfotable->data
[] = new html_table_row(array($picturecell, $contentcell));
327 echo html_writer
::table($groupinfotable);
332 // Define a table showing a list of users in the current role selection.
333 $tablecolumns = array();
334 $tableheaders = array();
335 if ($bulkoperations && $mode === MODE_BRIEF
) {
336 $tablecolumns[] = 'select';
337 $tableheaders[] = get_string('select');
339 $tablecolumns[] = 'userpic';
340 $tablecolumns[] = 'fullname';
342 $extrafields = get_extra_user_fields($context);
343 $tableheaders[] = get_string('userpic');
344 $tableheaders[] = get_string('fullnameuser');
346 if ($mode === MODE_BRIEF
) {
347 foreach ($extrafields as $field) {
348 $tablecolumns[] = $field;
349 $tableheaders[] = get_user_field_name($field);
352 if ($mode === MODE_BRIEF
&& !isset($hiddenfields['city'])) {
353 $tablecolumns[] = 'city';
354 $tableheaders[] = get_string('city');
356 if ($mode === MODE_BRIEF
&& !isset($hiddenfields['country'])) {
357 $tablecolumns[] = 'country';
358 $tableheaders[] = get_string('country');
360 if (!isset($hiddenfields['lastaccess'])) {
361 $tablecolumns[] = 'lastaccess';
362 if ($course->id
== SITEID
) {
363 // Exception case for viewing participants on site home.
364 $tableheaders[] = get_string('lastsiteaccess');
366 $tableheaders[] = get_string('lastcourseaccess');
370 if ($bulkoperations && $mode === MODE_USERDETAILS
) {
371 $tablecolumns[] = 'select';
372 $tableheaders[] = get_string('select');
375 $table = new flexible_table('user-index-participants-'.$course->id
);
376 $table->define_columns($tablecolumns);
377 $table->define_headers($tableheaders);
378 $table->define_baseurl($baseurl->out());
380 if (!isset($hiddenfields['lastaccess'])) {
381 $table->sortable(true, 'lastaccess', SORT_DESC
);
383 $table->sortable(true, 'firstname', SORT_ASC
);
386 $table->no_sorting('roles');
387 $table->no_sorting('groups');
388 $table->no_sorting('groupings');
389 $table->no_sorting('select');
391 $table->set_attribute('cellspacing', '0');
392 $table->set_attribute('id', 'participants');
393 $table->set_attribute('class', 'generaltable generalbox');
395 $table->set_control_variables(array(
396 TABLE_VAR_SORT
=> 'ssort',
397 TABLE_VAR_HIDE
=> 'shide',
398 TABLE_VAR_SHOW
=> 'sshow',
399 TABLE_VAR_IFIRST
=> 'sifirst',
400 TABLE_VAR_ILAST
=> 'silast',
401 TABLE_VAR_PAGE
=> 'spage'
405 list($esql, $params) = get_enrolled_sql($context, null, $currentgroup, true);
406 $joins = array("FROM {user} u");
409 $userfields = array('username', 'email', 'city', 'country', 'lang', 'timezone', 'maildisplay');
410 $mainuserfields = user_picture
::fields('u', $userfields);
411 $extrasql = get_extra_user_fields_sql($context, 'u', '', $userfields);
414 $select = "SELECT $mainuserfields, u.lastaccess$extrasql";
415 $joins[] = "JOIN ($esql) e ON e.id = u.id"; // Everybody on the frontpage usually.
417 $wheres[] = get_user_lastaccess_sql($accesssince);
421 $select = "SELECT $mainuserfields, COALESCE(ul.timeaccess, 0) AS lastaccess$extrasql";
422 $joins[] = "JOIN ($esql) e ON e.id = u.id"; // Course enrolled users only.
423 $joins[] = "LEFT JOIN {user_lastaccess} ul ON (ul.userid = u.id AND ul.courseid = :courseid)"; // Not everybody accessed course yet.
424 $params['courseid'] = $course->id
;
426 $wheres[] = get_course_lastaccess_sql($accesssince);
430 // Performance hacks - we preload user contexts together with accounts.
431 $ccselect = ', ' . context_helper
::get_preload_record_columns_sql('ctx');
432 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = u.id AND ctx.contextlevel = :contextlevel)";
433 $params['contextlevel'] = CONTEXT_USER
;
434 $select .= $ccselect;
438 // Limit list to users with some role only.
440 // We want to query both the current context and parent contexts.
441 list($relatedctxsql, $relatedctxparams) = $DB->get_in_or_equal($context->get_parent_context_ids(true), SQL_PARAMS_NAMED
, 'relatedctx');
443 $wheres[] = "u.id IN (SELECT userid FROM {role_assignments} WHERE roleid = :roleid AND contextid $relatedctxsql)";
444 $params = array_merge($params, array('roleid' => $roleid), $relatedctxparams);
447 $from = implode("\n", $joins);
449 $where = "WHERE " . implode(" AND ", $wheres);
454 $totalcount = $DB->count_records_sql("SELECT COUNT(u.id) $from $where", $params);
456 if (!empty($search)) {
457 $fullname = $DB->sql_fullname('u.firstname', 'u.lastname');
458 $wheres[] = "(". $DB->sql_like($fullname, ':search1', false, false) .
459 " OR ". $DB->sql_like('email', ':search2', false, false) .
460 " OR ". $DB->sql_like('idnumber', ':search3', false, false) .") ";
461 $params['search1'] = "%$search%";
462 $params['search2'] = "%$search%";
463 $params['search3'] = "%$search%";
466 list($twhere, $tparams) = $table->get_sql_where();
469 $params = array_merge($params, $tparams);
472 $from = implode("\n", $joins);
474 $where = "WHERE " . implode(" AND ", $wheres);
479 if ($table->get_sql_sort()) {
480 $sort = ' ORDER BY '.$table->get_sql_sort();
485 $matchcount = $DB->count_records_sql("SELECT COUNT(u.id) $from $where", $params);
487 $table->initialbars(true);
488 $table->pagesize($perpage, $matchcount);
490 // List of users at the current visible page - paging makes it relatively short.
491 $userlist = $DB->get_recordset_sql("$select $from $where $sort", $params, $table->get_page_start(), $table->get_page_size());
493 // If there are multiple Roles in the course, then show a drop down menu for switching.
494 if (count($rolenames) > 1) {
495 echo '<div class="rolesform">';
496 echo $OUTPUT->single_select($rolenamesurl, 'roleid', $rolenames, $roleid, null,
497 'rolesform', array('label' => get_string('currentrole', 'role')));
500 } else if (count($rolenames) == 1) {
501 // When all users with the same role - print its name.
502 echo '<div class="rolesform">';
503 echo get_string('role').get_string('labelsep', 'langconfig');
504 $rolename = reset($rolenames);
510 if ($course->id
!= SITEID
&& has_capability('moodle/course:enrolreview', $context)) {
511 $editlink = new moodle_url('/enrol/users.php', array('id' => $course->id
));
516 $a->number
= $totalcount;
517 $a->role
= $rolenames[$roleid];
518 $heading = format_string(get_string('xuserswiththerole', 'role', $a));
520 if ($currentgroup and !empty($group)) {
521 $a->group
= $group->name
;
522 $heading .= ' ' . format_string(get_string('ingroup', 'role', $a));
525 if ($accesssince && !empty($timeoptions[$accesssince])) {
526 $a->timeperiod
= $timeoptions[$accesssince];
527 $heading .= ' ' . format_string(get_string('inactiveformorethan', 'role', $a));
530 $heading .= ": $a->number";
532 if (!empty($editlink)) {
533 $editlink->param('role', $roleid);
534 $heading .= $OUTPUT->action_icon($editlink, new pix_icon('t/edit', get_string('edit')));
536 echo $OUTPUT->heading($heading, 3);
538 if ($course->id
== SITEID
and $roleid < 0) {
539 $strallparticipants = get_string('allsiteusers', 'role');
541 $strallparticipants = get_string('allparticipants');
544 if (!empty($editlink)) {
545 $editlink = $OUTPUT->action_icon($editlink, new pix_icon('t/edit', get_string('edit')));
548 if ($matchcount < $totalcount) {
549 echo $OUTPUT->heading($strallparticipants.get_string('labelsep', 'langconfig').$matchcount.'/'.$totalcount . $editlink, 3);
551 echo $OUTPUT->heading($strallparticipants.get_string('labelsep', 'langconfig').$matchcount . $editlink, 3);
556 if ($bulkoperations) {
557 echo '<form action="action_redir.php" method="post" id="participantsform">';
559 echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
560 echo '<input type="hidden" name="returnto" value="'.s($PAGE->url
->out(false)).'" />';
563 if ($mode === MODE_USERDETAILS
) { // Print simple listing.
564 if ($totalcount < 1) {
565 echo $OUTPUT->heading(get_string('nothingtodisplay'));
567 if ($totalcount > $perpage) {
569 $firstinitial = $table->get_initial_first();
570 $lastinitial = $table->get_initial_last();
571 $strall = get_string('all');
572 $alpha = explode(',', get_string('alphabet', 'langconfig'));
574 // Bar of first initials.
576 echo '<div class="initialbar firstinitial">'.get_string('firstname').' : ';
577 if (!empty($firstinitial)) {
578 echo '<a href="'.$baseurl->out().'&sifirst=">'.$strall.'</a>';
580 echo '<strong>'.$strall.'</strong>';
582 foreach ($alpha as $letter) {
583 if ($letter == $firstinitial) {
584 echo ' <strong>'.$letter.'</strong>';
586 echo ' <a href="'.$baseurl->out().'&sifirst='.$letter.'">'.$letter.'</a>';
591 // Bar of last initials.
593 echo '<div class="initialbar lastinitial">'.get_string('lastname').' : ';
594 if (!empty($lastinitial)) {
595 echo '<a href="'.$baseurl->out().'&silast=">'.$strall.'</a>';
597 echo '<strong>'.$strall.'</strong>';
599 foreach ($alpha as $letter) {
600 if ($letter == $lastinitial) {
601 echo ' <strong>'.$letter.'</strong>';
603 echo ' <a href="'.$baseurl->out().'&silast='.$letter.'">'.$letter.'</a>';
608 $pagingbar = new paging_bar($matchcount, intval($table->get_page_start() / $perpage), $perpage, $baseurl);
609 $pagingbar->pagevar
= 'spage';
610 echo $OUTPUT->render($pagingbar);
613 if ($matchcount > 0) {
614 $usersprinted = array();
615 foreach ($userlist as $user) {
616 if (in_array($user->id
, $usersprinted)) { // Prevent duplicates by r.hidden - MDL-13935.
619 $usersprinted[] = $user->id
; // Add new user to the array of users printed.
621 context_helper
::preload_from_record($user);
623 $context = context_course
::instance($course->id
);
624 $usercontext = context_user
::instance($user->id
);
626 $countries = get_string_manager()->get_list_of_countries();
628 // Get the hidden field list.
629 if (has_capability('moodle/course:viewhiddenuserfields', $context)) {
630 $hiddenfields = array();
632 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields
));
634 $table = new html_table();
635 $table->attributes
['class'] = 'userinfobox';
637 $row = new html_table_row();
638 $row->cells
[0] = new html_table_cell();
639 $row->cells
[0]->attributes
['class'] = 'left side';
641 $row->cells
[0]->text
= $OUTPUT->user_picture($user, array('size' => 100, 'courseid' => $course->id
));
642 $row->cells
[1] = new html_table_cell();
643 $row->cells
[1]->attributes
['class'] = 'content';
645 $row->cells
[1]->text
= $OUTPUT->container(fullname($user, has_capability('moodle/site:viewfullnames', $context)), 'username');
646 $row->cells
[1]->text
.= $OUTPUT->container_start('info');
648 if (!empty($user->role
)) {
649 $row->cells
[1]->text
.= get_string('role').get_string('labelsep', 'langconfig').$user->role
.'<br />';
651 if ($user->maildisplay
== 1 or ($user->maildisplay
== 2 and ($course->id
!= SITEID
) and !isguestuser()) or
652 in_array('email', $extrafields) or ($user->id
== $USER->id
)) {
653 $row->cells
[1]->text
.= get_string('email').get_string('labelsep', 'langconfig').html_writer
::link("mailto:$user->email", $user->email
) . '<br />';
655 foreach ($extrafields as $field) {
656 if ($field === 'email') {
657 // Skip email because it was displayed with different logic above
658 // because this page is intended for students too.
661 $row->cells
[1]->text
.= get_user_field_name($field) .
662 get_string('labelsep', 'langconfig') . s($user->{$field}) . '<br />';
664 if (($user->city
or $user->country
) and (!isset($hiddenfields['city']) or !isset($hiddenfields['country']))) {
665 $row->cells
[1]->text
.= get_string('city').get_string('labelsep', 'langconfig');
666 if ($user->city
&& !isset($hiddenfields['city'])) {
667 $row->cells
[1]->text
.= $user->city
;
669 if (!empty($countries[$user->country
]) && !isset($hiddenfields['country'])) {
670 if ($user->city
&& !isset($hiddenfields['city'])) {
671 $row->cells
[1]->text
.= ', ';
673 $row->cells
[1]->text
.= $countries[$user->country
];
675 $row->cells
[1]->text
.= '<br />';
678 if (!isset($hiddenfields['lastaccess'])) {
679 if ($user->lastaccess
) {
680 $row->cells
[1]->text
.= get_string('lastaccess').get_string('labelsep', 'langconfig').userdate($user->lastaccess
);
681 $row->cells
[1]->text
.= ' ('. format_time(time() - $user->lastaccess
, $datestring) .')';
683 $row->cells
[1]->text
.= get_string('lastaccess').get_string('labelsep', 'langconfig').get_string('never');
687 $row->cells
[1]->text
.= $OUTPUT->container_end();
689 $row->cells
[2] = new html_table_cell();
690 $row->cells
[2]->attributes
['class'] = 'links';
691 $row->cells
[2]->text
= '';
695 if ($CFG->enableblogs
&& ($CFG->bloglevel
!= BLOG_USER_LEVEL ||
$USER->id
== $user->id
)) {
696 $links[] = html_writer
::link(new moodle_url('/blog/index.php?userid='.$user->id
), get_string('blogs', 'blog'));
699 if (!empty($CFG->enablenotes
) and (has_capability('moodle/notes:manage', $context) ||
has_capability('moodle/notes:view', $context))) {
700 $links[] = html_writer
::link(new moodle_url('/notes/index.php?course=' . $course->id
. '&user='.$user->id
), get_string('notes', 'notes'));
703 if (has_capability('moodle/site:viewreports', $context) or has_capability('moodle/user:viewuseractivitiesreport', $usercontext)) {
704 $links[] = html_writer
::link(new moodle_url('/course/user.php?id='. $course->id
.'&user='. $user->id
), get_string('activity'));
707 if ($USER->id
!= $user->id
&& !\core\session\manager
::is_loggedinas() && has_capability('moodle/user:loginas', $context) && !is_siteadmin($user->id
)) {
708 $links[] = html_writer
::link(new moodle_url('/course/loginas.php?id='. $course->id
.'&user='. $user->id
.'&sesskey='. sesskey()), get_string('loginas'));
711 $links[] = html_writer
::link(new moodle_url('/user/view.php?id='. $user->id
.'&course='. $course->id
), get_string('fullprofile') . '...');
713 $row->cells
[2]->text
.= implode('', $links);
715 if ($bulkoperations) {
716 $row->cells
[2]->text
.= '<br /><input type="checkbox" class="usercheckbox" name="user'.$user->id
.'" /> ';
718 $table->data
= array($row);
719 echo html_writer
::table($table);
723 echo $OUTPUT->heading(get_string('nothingtodisplay'));
728 $countrysort = (strpos($sort, 'country') !== false);
729 $timeformat = get_string('strftimedate');
734 $usersprinted = array();
735 foreach ($userlist as $user) {
736 if (in_array($user->id
, $usersprinted)) { // Prevent duplicates by r.hidden - MDL-13935.
739 $usersprinted[] = $user->id
; // Add new user to the array of users printed.
741 context_helper
::preload_from_record($user);
743 if ($user->lastaccess
) {
744 $lastaccess = format_time(time() - $user->lastaccess
, $datestring);
746 $lastaccess = $strnever;
749 if (empty($user->country
)) {
754 $country = '('.$user->country
.') '.$countries[$user->country
];
756 $country = $countries[$user->country
];
760 $usercontext = context_user
::instance($user->id
);
762 if ($piclink = ($USER->id
== $user->id ||
has_capability('moodle/user:viewdetails', $context) ||
has_capability('moodle/user:viewdetails', $usercontext))) {
763 $profilelink = '<strong><a href="'.$CFG->wwwroot
.'/user/view.php?id='.$user->id
.'&course='.$course->id
.'">'.fullname($user).'</a></strong>';
765 $profilelink = '<strong>'.fullname($user).'</strong>';
769 if ($bulkoperations) {
770 $data[] = '<input type="checkbox" class="usercheckbox" name="user'.$user->id
.'" />';
772 $data[] = $OUTPUT->user_picture($user, array('size' => 35, 'courseid' => $course->id
));
773 $data[] = $profilelink;
775 if ($mode === MODE_BRIEF
) {
776 foreach ($extrafields as $field) {
777 $data[] = $user->{$field};
780 if ($mode === MODE_BRIEF
&& !isset($hiddenfields['city'])) {
781 $data[] = $user->city
;
783 if ($mode === MODE_BRIEF
&& !isset($hiddenfields['country'])) {
786 if (!isset($hiddenfields['lastaccess'])) {
787 $data[] = $lastaccess;
790 $table->add_data($data);
794 $table->print_html();
798 if ($bulkoperations) {
799 echo '<br /><div class="buttons">';
800 echo '<input type="button" id="checkall" value="'.get_string('selectall').'" /> ';
801 echo '<input type="button" id="checknone" value="'.get_string('deselectall').'" /> ';
802 $displaylist = array();
803 $displaylist['messageselect.php'] = get_string('messageselectadd');
804 if (!empty($CFG->enablenotes
) && has_capability('moodle/notes:manage', $context) && $context->id
!= $frontpagectx->id
) {
805 $displaylist['addnote.php'] = get_string('addnewnote', 'notes');
806 $displaylist['groupaddnote.php'] = get_string('groupaddnewnote', 'notes');
809 echo $OUTPUT->help_icon('withselectedusers');
810 echo html_writer
::tag('label', get_string("withselectedusers"), array('for' => 'formactionid'));
811 echo html_writer
::select($displaylist, 'formaction', '', array('' => 'choosedots'), array('id' => 'formactionid'));
813 echo '<input type="hidden" name="id" value="'.$course->id
.'" />';
814 echo '<noscript style="display:inline">';
815 echo '<div><input type="submit" value="'.get_string('ok').'" /></div>';
820 $module = array('name' => 'core_user', 'fullpath' => '/user/module.js');
821 $PAGE->requires
->js_init_call('M.core_user.init_participation', null, false, $module);
824 // Show a search box if all participants don't fit on a single screen.
825 if ($totalcount > $perpage) {
826 echo '<form action="index.php" class="searchform"><div><input type="hidden" name="id" value="'.$course->id
.'" />';
827 echo '<label for="search">' . get_string('search', 'search') . ' </label>';
828 echo '<input type="text" id="search" name="search" value="'.s($search).'" /> <input type="submit" value="'.get_string('search').'" /></div></form>'."\n";
831 $perpageurl = clone($baseurl);
832 $perpageurl->remove_params('perpage');
833 if ($perpage == SHOW_ALL_PAGE_SIZE
) {
834 $perpageurl->param('perpage', DEFAULT_PAGE_SIZE
);
835 echo $OUTPUT->container(html_writer
::link($perpageurl, get_string('showperpage', '', DEFAULT_PAGE_SIZE
)), array(), 'showall');
837 } else if ($matchcount > 0 && $perpage < $matchcount) {
838 $perpageurl->param('perpage', SHOW_ALL_PAGE_SIZE
);
839 echo $OUTPUT->container(html_writer
::link($perpageurl, get_string('showall', '', $matchcount)), array(), 'showall');
842 echo '</div>'; // Userlist.
844 echo $OUTPUT->footer();
851 * Returns SQL that can be used to limit a query to a period where the user last accessed a course..
853 * @param string $accesssince
856 function get_course_lastaccess_sql($accesssince='') {
857 if (empty($accesssince)) {
860 if ($accesssince == -1) { // Never.
861 return 'ul.timeaccess = 0';
863 return 'ul.timeaccess != 0 AND ul.timeaccess < '.$accesssince;
868 * Returns SQL that can be used to limit a query to a period where the user last accessed the system.
870 * @param string $accesssince
873 function get_user_lastaccess_sql($accesssince='') {
874 if (empty($accesssince)) {
877 if ($accesssince == -1) { // Never.
878 return 'u.lastaccess = 0';
880 return 'u.lastaccess != 0 AND u.lastaccess < '.$accesssince;