MDL-56246 gradebook: sitewide setting for grade export with feedback
[moodle.git] / user / index.php
blobaed9016d9674afb83b242b2a8bb045d769c11fc3
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
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
22 * @package core_user
25 require_once('../config.php');
26 require_once($CFG->dirroot.'/user/lib.php');
27 require_once($CFG->dirroot.'/course/lib.php');
28 require_once($CFG->dirroot.'/notes/lib.php');
29 require_once($CFG->libdir.'/tablelib.php');
30 require_once($CFG->libdir.'/filelib.php');
31 require_once($CFG->dirroot.'/enrol/locallib.php');
33 define('DEFAULT_PAGE_SIZE', 20);
34 define('SHOW_ALL_PAGE_SIZE', 5000);
36 $page = optional_param('page', 0, PARAM_INT); // Which page to show.
37 $perpage = optional_param('perpage', DEFAULT_PAGE_SIZE, PARAM_INT); // How many per page.
38 $contextid = optional_param('contextid', 0, PARAM_INT); // One of this or.
39 $courseid = optional_param('id', 0, PARAM_INT); // This are required.
40 $newcourse = optional_param('newcourse', false, PARAM_BOOL);
41 $selectall = optional_param('selectall', false, PARAM_BOOL); // When rendering checkboxes against users mark them all checked.
42 $roleid = optional_param('roleid', 0, PARAM_INT);
43 $groupparam = optional_param('group', 0, PARAM_INT);
45 $PAGE->set_url('/user/index.php', array(
46 'page' => $page,
47 'perpage' => $perpage,
48 'contextid' => $contextid,
49 'id' => $courseid,
50 'newcourse' => $newcourse));
52 if ($contextid) {
53 $context = context::instance_by_id($contextid, MUST_EXIST);
54 if ($context->contextlevel != CONTEXT_COURSE) {
55 print_error('invalidcontext');
57 $course = $DB->get_record('course', array('id' => $context->instanceid), '*', MUST_EXIST);
58 } else {
59 $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);
60 $context = context_course::instance($course->id, MUST_EXIST);
62 // Not needed anymore.
63 unset($contextid);
64 unset($courseid);
66 require_login($course);
68 $systemcontext = context_system::instance();
69 $isfrontpage = ($course->id == SITEID);
71 $frontpagectx = context_course::instance(SITEID);
73 if ($isfrontpage) {
74 $PAGE->set_pagelayout('admin');
75 course_require_view_participants($systemcontext);
76 } else {
77 $PAGE->set_pagelayout('incourse');
78 course_require_view_participants($context);
81 // Trigger events.
82 user_list_view($course, $context);
84 $bulkoperations = has_capability('moodle/course:bulkmessaging', $context);
86 $PAGE->set_title("$course->shortname: ".get_string('participants'));
87 $PAGE->set_heading($course->fullname);
88 $PAGE->set_pagetype('course-view-' . $course->format);
89 $PAGE->add_body_class('path-user'); // So we can style it independently.
90 $PAGE->set_other_editing_capability('moodle/course:manageactivities');
92 // Expand the users node in the settings navigation when it exists because those pages
93 // are related to this one.
94 $node = $PAGE->settingsnav->find('users', navigation_node::TYPE_CONTAINER);
95 if ($node) {
96 $node->force_open();
99 echo $OUTPUT->header();
100 echo $OUTPUT->heading(get_string('participants'));
102 // Get the currently applied filters.
103 $filtersapplied = optional_param_array('unified-filters', [], PARAM_NOTAGS);
104 $filterwassubmitted = optional_param('unified-filter-submitted', 0, PARAM_BOOL);
106 // If they passed a role make sure they can view that role.
107 if ($roleid) {
108 $viewableroles = get_profile_roles($context);
110 // Check if the user can view this role.
111 if (array_key_exists($roleid, $viewableroles)) {
112 $filtersapplied[] = USER_FILTER_ROLE . ':' . $roleid;
113 } else {
114 $roleid = 0;
118 // Default group ID.
119 $groupid = false;
120 $canaccessallgroups = has_capability('moodle/site:accessallgroups', $context);
121 if ($course->groupmode != NOGROUPS) {
122 if ($canaccessallgroups) {
123 // Change the group if the user can access all groups and has specified group in the URL.
124 if ($groupparam) {
125 $groupid = $groupparam;
127 } else {
128 // Otherwise, get the user's default group.
129 $groupid = groups_get_course_group($course, true);
130 if ($course->groupmode == SEPARATEGROUPS && !$groupid) {
131 // The user is not in the group so show message and exit.
132 echo $OUTPUT->notification(get_string('notingroup'));
133 echo $OUTPUT->footer();
134 exit;
138 $hasgroupfilter = false;
139 $lastaccess = 0;
140 $searchkeywords = [];
141 $enrolid = 0;
142 $status = -1;
143 foreach ($filtersapplied as $filter) {
144 $filtervalue = explode(':', $filter, 2);
145 $value = null;
146 if (count($filtervalue) == 2) {
147 $key = clean_param($filtervalue[0], PARAM_INT);
148 $value = clean_param($filtervalue[1], PARAM_INT);
149 } else {
150 // Search string.
151 $key = USER_FILTER_STRING;
152 $value = clean_param($filtervalue[0], PARAM_TEXT);
155 switch ($key) {
156 case USER_FILTER_ENROLMENT:
157 $enrolid = $value;
158 break;
159 case USER_FILTER_GROUP:
160 $groupid = $value;
161 $hasgroupfilter = true;
162 break;
163 case USER_FILTER_LAST_ACCESS:
164 $lastaccess = $value;
165 break;
166 case USER_FILTER_ROLE:
167 $roleid = $value;
168 break;
169 case USER_FILTER_STATUS:
170 // We only accept active/suspended statuses.
171 if ($value == ENROL_USER_ACTIVE || $value == ENROL_USER_SUSPENDED) {
172 $status = $value;
174 break;
175 default:
176 // Search string.
177 $searchkeywords[] = $value;
178 break;
182 // If course supports groups we may need to set a default.
183 if ($groupid !== false) {
184 if ($canaccessallgroups) {
185 // User can access all groups, let them filter by whatever was selected.
186 $filtersapplied[] = USER_FILTER_GROUP . ':' . $groupid;
187 } else if (!$filterwassubmitted && $course->groupmode == VISIBLEGROUPS) {
188 // If we are in a course with visible groups and the user has not submitted anything and does not have
189 // access to all groups, then set a default group.
190 $filtersapplied[] = USER_FILTER_GROUP . ':' . $groupid;
191 } else if (!$hasgroupfilter && $course->groupmode != VISIBLEGROUPS) {
192 // The user can't access all groups and has not set a group filter in a course where the groups are not visible
193 // then apply a default group filter.
194 $filtersapplied[] = USER_FILTER_GROUP . ':' . $groupid;
195 } else if (!$hasgroupfilter) { // No need for the group id to be set.
196 $groupid = false;
200 if ($groupid && ($course->groupmode != SEPARATEGROUPS || $canaccessallgroups)) {
201 $grouprenderer = $PAGE->get_renderer('core_group');
202 $groupdetailpage = new \core_group\output\group_details($groupid);
203 echo $grouprenderer->group_details($groupdetailpage);
206 // Manage enrolments.
207 $manager = new course_enrolment_manager($PAGE, $course);
208 $enrolbuttons = $manager->get_manual_enrol_buttons();
209 $enrolrenderer = $PAGE->get_renderer('core_enrol');
210 $enrolbuttonsout = '';
211 foreach ($enrolbuttons as $enrolbutton) {
212 $enrolbuttonsout .= $enrolrenderer->render($enrolbutton);
214 echo html_writer::div($enrolbuttonsout, 'pull-right');
216 // Render the unified filter.
217 $renderer = $PAGE->get_renderer('core_user');
218 echo $renderer->unified_filter($course, $context, $filtersapplied);
220 echo '<div class="userlist">';
222 // Should use this variable so that we don't break stuff every time a variable is added or changed.
223 $baseurl = new moodle_url('/user/index.php', array(
224 'contextid' => $context->id,
225 'id' => $course->id,
226 'perpage' => $perpage));
228 $participanttable = new \core_user\participants_table($course->id, $groupid, $lastaccess, $roleid, $enrolid, $status,
229 $searchkeywords, $bulkoperations, $selectall);
230 $participanttable->define_baseurl($baseurl);
232 // Do this so we can get the total number of rows.
233 ob_start();
234 $participanttable->out($perpage, true);
235 $participanttablehtml = ob_get_contents();
236 ob_end_clean();
238 if ($bulkoperations) {
239 echo '<form action="action_redir.php" method="post" id="participantsform">';
240 echo '<div>';
241 echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
242 echo '<input type="hidden" name="returnto" value="'.s($PAGE->url->out(false)).'" />';
245 echo $participanttablehtml;
247 $PAGE->requires->js_call_amd('core_user/name_page_filter', 'init');
249 $perpageurl = clone($baseurl);
250 $perpageurl->remove_params('perpage');
251 if ($perpage == SHOW_ALL_PAGE_SIZE && $participanttable->totalrows > DEFAULT_PAGE_SIZE) {
252 $perpageurl->param('perpage', DEFAULT_PAGE_SIZE);
253 echo $OUTPUT->container(html_writer::link($perpageurl, get_string('showperpage', '', DEFAULT_PAGE_SIZE)), array(), 'showall');
255 } else if ($participanttable->get_page_size() < $participanttable->totalrows) {
256 $perpageurl->param('perpage', SHOW_ALL_PAGE_SIZE);
257 echo $OUTPUT->container(html_writer::link($perpageurl, get_string('showall', '', $participanttable->totalrows)),
258 array(), 'showall');
261 if ($bulkoperations) {
262 echo '<br /><div class="buttons">';
264 if ($participanttable->get_page_size() < $participanttable->totalrows) {
265 $perpageurl = clone($baseurl);
266 $perpageurl->remove_params('perpage');
267 $perpageurl->param('perpage', SHOW_ALL_PAGE_SIZE);
268 $perpageurl->param('selectall', true);
269 $showalllink = $perpageurl;
270 } else {
271 $showalllink = false;
274 echo html_writer::start_tag('div', array('class' => 'btn-group'));
275 if ($participanttable->get_page_size() < $participanttable->totalrows) {
276 // Select all users, refresh page showing all users and mark them all selected.
277 $label = get_string('selectalluserswithcount', 'moodle', $participanttable->totalrows);
278 echo html_writer::tag('input', "", array('type' => 'button', 'id' => 'checkall', 'class' => 'btn btn-secondary',
279 'value' => $label, 'data-showallink' => $showalllink));
280 // Select all users, mark all users on page as selected.
281 echo html_writer::tag('input', "", array('type' => 'button', 'id' => 'checkallonpage', 'class' => 'btn btn-secondary',
282 'value' => get_string('selectallusersonpage')));
283 } else {
284 echo html_writer::tag('input', "", array('type' => 'button', 'id' => 'checkallonpage', 'class' => 'btn btn-secondary',
285 'value' => get_string('selectall')));
288 echo html_writer::tag('input', "", array('type' => 'button', 'id' => 'checknone', 'class' => 'btn btn-secondary',
289 'value' => get_string('deselectall')));
290 echo html_writer::end_tag('div');
291 $displaylist = array();
292 $displaylist['#messageselect'] = get_string('messageselectadd');
293 if (!empty($CFG->enablenotes) && has_capability('moodle/notes:manage', $context) && $context->id != $frontpagectx->id) {
294 $displaylist['#addgroupnote'] = get_string('addnewnote', 'notes');
297 if ($context->id != $frontpagectx->id) {
298 $instances = $manager->get_enrolment_instances();
299 $plugins = $manager->get_enrolment_plugins(false);
300 foreach ($instances as $key => $instance) {
301 if (!isset($plugins[$instance->enrol])) {
302 // Weird, some broken stuff in plugin.
303 continue;
305 $plugin = $plugins[$instance->enrol];
306 $bulkoperations = $plugin->get_bulk_operations($manager);
308 $pluginoptions = [];
309 foreach ($bulkoperations as $key => $bulkoperation) {
310 $params = ['plugin' => $plugin->get_name(), 'operation' => $key];
311 $url = new moodle_url('bulkchange.php', $params);
312 $pluginoptions[$url->out(false)] = $bulkoperation->get_title();
314 if (!empty($pluginoptions)) {
315 $name = get_string('pluginname', 'enrol_' . $plugin->get_name());
316 $displaylist[] = [$name => $pluginoptions];
321 echo $OUTPUT->help_icon('withselectedusers');
322 echo html_writer::tag('label', get_string("withselectedusers"), array('for' => 'formactionid'));
323 echo html_writer::select($displaylist, 'formaction', '', array('' => 'choosedots'), array('id' => 'formactionid'));
325 echo '<input type="hidden" name="id" value="'.$course->id.'" />';
326 echo '<noscript style="display:inline">';
327 echo '<div><input type="submit" value="'.get_string('ok').'" /></div>';
328 echo '</noscript>';
329 echo '</div></div>';
330 echo '</form>';
332 $options = new stdClass();
333 $options->courseid = $course->id;
334 $options->noteStateNames = note_get_state_names();
335 $options->stateHelpIcon = $OUTPUT->help_icon('publishstate', 'notes');
336 $PAGE->requires->js_call_amd('core_user/participants', 'init', [$options]);
339 echo '</div>'; // Userlist.
341 $enrolrenderer = $PAGE->get_renderer('core_enrol');
342 echo '<div class="pull-right">';
343 foreach ($enrolbuttons as $enrolbutton) {
344 echo $enrolrenderer->render($enrolbutton);
346 echo '</div>';
348 if ($newcourse == 1) {
349 $str = get_string('proceedtocourse', 'enrol');
350 // Floated left so it goes under the enrol users button on mobile.
351 // The margin is to make it line up with the enrol users button when they are both on the same line.
352 $classes = 'm-y-1 pull-xs-left';
353 $url = course_get_url($course);
354 echo $OUTPUT->single_button($url, $str, 'GET', array('class' => $classes));
357 echo $OUTPUT->footer();