weekly release 3.6.6+
[moodle.git] / lib / enrollib.php
blobf10e0d2874e69e10817ec335101796c22b79cb12
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This library includes the basic parts of enrol api.
20 * It is available on each page.
22 * @package core
23 * @subpackage enrol
24 * @copyright 2010 Petr Skoda {@link http://skodak.org}
25 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') || die();
30 /** Course enrol instance enabled. (used in enrol->status) */
31 define('ENROL_INSTANCE_ENABLED', 0);
33 /** Course enrol instance disabled, user may enter course if other enrol instance enabled. (used in enrol->status)*/
34 define('ENROL_INSTANCE_DISABLED', 1);
36 /** User is active participant (used in user_enrolments->status)*/
37 define('ENROL_USER_ACTIVE', 0);
39 /** User participation in course is suspended (used in user_enrolments->status) */
40 define('ENROL_USER_SUSPENDED', 1);
42 /** @deprecated - enrol caching was reworked, use ENROL_MAX_TIMESTAMP instead */
43 define('ENROL_REQUIRE_LOGIN_CACHE_PERIOD', 1800);
45 /** The timestamp indicating forever */
46 define('ENROL_MAX_TIMESTAMP', 2147483647);
48 /** When user disappears from external source, the enrolment is completely removed */
49 define('ENROL_EXT_REMOVED_UNENROL', 0);
51 /** When user disappears from external source, the enrolment is kept as is - one way sync */
52 define('ENROL_EXT_REMOVED_KEEP', 1);
54 /** @deprecated since 2.4 not used any more, migrate plugin to new restore methods */
55 define('ENROL_RESTORE_TYPE', 'enrolrestore');
57 /**
58 * When user disappears from external source, user enrolment is suspended, roles are kept as is.
59 * In some cases user needs a role with some capability to be visible in UI - suc has in gradebook,
60 * assignments, etc.
62 define('ENROL_EXT_REMOVED_SUSPEND', 2);
64 /**
65 * When user disappears from external source, the enrolment is suspended and roles assigned
66 * by enrol instance are removed. Please note that user may "disappear" from gradebook and other areas.
67 * */
68 define('ENROL_EXT_REMOVED_SUSPENDNOROLES', 3);
70 /**
71 * Do not send email.
73 define('ENROL_DO_NOT_SEND_EMAIL', 0);
75 /**
76 * Send email from course contact.
78 define('ENROL_SEND_EMAIL_FROM_COURSE_CONTACT', 1);
80 /**
81 * Send email from enrolment key holder.
83 define('ENROL_SEND_EMAIL_FROM_KEY_HOLDER', 2);
85 /**
86 * Send email from no reply address.
88 define('ENROL_SEND_EMAIL_FROM_NOREPLY', 3);
90 /** Edit enrolment action. */
91 define('ENROL_ACTION_EDIT', 'editenrolment');
93 /** Unenrol action. */
94 define('ENROL_ACTION_UNENROL', 'unenrol');
96 /**
97 * Returns instances of enrol plugins
98 * @param bool $enabled return enabled only
99 * @return array of enrol plugins name=>instance
101 function enrol_get_plugins($enabled) {
102 global $CFG;
104 $result = array();
106 if ($enabled) {
107 // sorted by enabled plugin order
108 $enabled = explode(',', $CFG->enrol_plugins_enabled);
109 $plugins = array();
110 foreach ($enabled as $plugin) {
111 $plugins[$plugin] = "$CFG->dirroot/enrol/$plugin";
113 } else {
114 // sorted alphabetically
115 $plugins = core_component::get_plugin_list('enrol');
116 ksort($plugins);
119 foreach ($plugins as $plugin=>$location) {
120 $class = "enrol_{$plugin}_plugin";
121 if (!class_exists($class)) {
122 if (!file_exists("$location/lib.php")) {
123 continue;
125 include_once("$location/lib.php");
126 if (!class_exists($class)) {
127 continue;
131 $result[$plugin] = new $class();
134 return $result;
138 * Returns instance of enrol plugin
139 * @param string $name name of enrol plugin ('manual', 'guest', ...)
140 * @return enrol_plugin
142 function enrol_get_plugin($name) {
143 global $CFG;
145 $name = clean_param($name, PARAM_PLUGIN);
147 if (empty($name)) {
148 // ignore malformed or missing plugin names completely
149 return null;
152 $location = "$CFG->dirroot/enrol/$name";
154 $class = "enrol_{$name}_plugin";
155 if (!class_exists($class)) {
156 if (!file_exists("$location/lib.php")) {
157 return null;
159 include_once("$location/lib.php");
160 if (!class_exists($class)) {
161 return null;
165 return new $class();
169 * Returns enrolment instances in given course.
170 * @param int $courseid
171 * @param bool $enabled
172 * @return array of enrol instances
174 function enrol_get_instances($courseid, $enabled) {
175 global $DB, $CFG;
177 if (!$enabled) {
178 return $DB->get_records('enrol', array('courseid'=>$courseid), 'sortorder,id');
181 $result = $DB->get_records('enrol', array('courseid'=>$courseid, 'status'=>ENROL_INSTANCE_ENABLED), 'sortorder,id');
183 $enabled = explode(',', $CFG->enrol_plugins_enabled);
184 foreach ($result as $key=>$instance) {
185 if (!in_array($instance->enrol, $enabled)) {
186 unset($result[$key]);
187 continue;
189 if (!file_exists("$CFG->dirroot/enrol/$instance->enrol/lib.php")) {
190 // broken plugin
191 unset($result[$key]);
192 continue;
196 return $result;
200 * Checks if a given plugin is in the list of enabled enrolment plugins.
202 * @param string $enrol Enrolment plugin name
203 * @return boolean Whether the plugin is enabled
205 function enrol_is_enabled($enrol) {
206 global $CFG;
208 if (empty($CFG->enrol_plugins_enabled)) {
209 return false;
211 return in_array($enrol, explode(',', $CFG->enrol_plugins_enabled));
215 * Check all the login enrolment information for the given user object
216 * by querying the enrolment plugins
218 * This function may be very slow, use only once after log-in or login-as.
220 * @param stdClass $user
221 * @return void
223 function enrol_check_plugins($user) {
224 global $CFG;
226 if (empty($user->id) or isguestuser($user)) {
227 // shortcut - there is no enrolment work for guests and not-logged-in users
228 return;
231 // originally there was a broken admin test, but accidentally it was non-functional in 2.2,
232 // which proved it was actually not necessary.
234 static $inprogress = array(); // To prevent this function being called more than once in an invocation
236 if (!empty($inprogress[$user->id])) {
237 return;
240 $inprogress[$user->id] = true; // Set the flag
242 $enabled = enrol_get_plugins(true);
244 foreach($enabled as $enrol) {
245 $enrol->sync_user_enrolments($user);
248 unset($inprogress[$user->id]); // Unset the flag
252 * Do these two students share any course?
254 * The courses has to be visible and enrolments has to be active,
255 * timestart and timeend restrictions are ignored.
257 * This function calls {@see enrol_get_shared_courses()} setting checkexistsonly
258 * to true.
260 * @param stdClass|int $user1
261 * @param stdClass|int $user2
262 * @return bool
264 function enrol_sharing_course($user1, $user2) {
265 return enrol_get_shared_courses($user1, $user2, false, true);
269 * Returns any courses shared by the two users
271 * The courses has to be visible and enrolments has to be active,
272 * timestart and timeend restrictions are ignored.
274 * @global moodle_database $DB
275 * @param stdClass|int $user1
276 * @param stdClass|int $user2
277 * @param bool $preloadcontexts If set to true contexts for the returned courses
278 * will be preloaded.
279 * @param bool $checkexistsonly If set to true then this function will return true
280 * if the users share any courses and false if not.
281 * @return array|bool An array of courses that both users are enrolled in OR if
282 * $checkexistsonly set returns true if the users share any courses
283 * and false if not.
285 function enrol_get_shared_courses($user1, $user2, $preloadcontexts = false, $checkexistsonly = false) {
286 global $DB, $CFG;
288 $user1 = isset($user1->id) ? $user1->id : $user1;
289 $user2 = isset($user2->id) ? $user2->id : $user2;
291 if (empty($user1) or empty($user2)) {
292 return false;
295 if (!$plugins = explode(',', $CFG->enrol_plugins_enabled)) {
296 return false;
299 list($plugins1, $params1) = $DB->get_in_or_equal($plugins, SQL_PARAMS_NAMED, 'ee1');
300 list($plugins2, $params2) = $DB->get_in_or_equal($plugins, SQL_PARAMS_NAMED, 'ee2');
301 $params = array_merge($params1, $params2);
302 $params['enabled1'] = ENROL_INSTANCE_ENABLED;
303 $params['enabled2'] = ENROL_INSTANCE_ENABLED;
304 $params['active1'] = ENROL_USER_ACTIVE;
305 $params['active2'] = ENROL_USER_ACTIVE;
306 $params['user1'] = $user1;
307 $params['user2'] = $user2;
309 $ctxselect = '';
310 $ctxjoin = '';
311 if ($preloadcontexts) {
312 $ctxselect = ', ' . context_helper::get_preload_record_columns_sql('ctx');
313 $ctxjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
314 $params['contextlevel'] = CONTEXT_COURSE;
317 $sql = "SELECT c.* $ctxselect
318 FROM {course} c
319 JOIN (
320 SELECT DISTINCT c.id
321 FROM {course} c
322 JOIN {enrol} e1 ON (c.id = e1.courseid AND e1.status = :enabled1 AND e1.enrol $plugins1)
323 JOIN {user_enrolments} ue1 ON (ue1.enrolid = e1.id AND ue1.status = :active1 AND ue1.userid = :user1)
324 JOIN {enrol} e2 ON (c.id = e2.courseid AND e2.status = :enabled2 AND e2.enrol $plugins2)
325 JOIN {user_enrolments} ue2 ON (ue2.enrolid = e2.id AND ue2.status = :active2 AND ue2.userid = :user2)
326 WHERE c.visible = 1
327 ) ec ON ec.id = c.id
328 $ctxjoin";
330 if ($checkexistsonly) {
331 return $DB->record_exists_sql($sql, $params);
332 } else {
333 $courses = $DB->get_records_sql($sql, $params);
334 if ($preloadcontexts) {
335 array_map('context_helper::preload_from_record', $courses);
337 return $courses;
342 * This function adds necessary enrol plugins UI into the course edit form.
344 * @param MoodleQuickForm $mform
345 * @param object $data course edit form data
346 * @param object $context context of existing course or parent category if course does not exist
347 * @return void
349 function enrol_course_edit_form(MoodleQuickForm $mform, $data, $context) {
350 $plugins = enrol_get_plugins(true);
351 if (!empty($data->id)) {
352 $instances = enrol_get_instances($data->id, false);
353 foreach ($instances as $instance) {
354 if (!isset($plugins[$instance->enrol])) {
355 continue;
357 $plugin = $plugins[$instance->enrol];
358 $plugin->course_edit_form($instance, $mform, $data, $context);
360 } else {
361 foreach ($plugins as $plugin) {
362 $plugin->course_edit_form(NULL, $mform, $data, $context);
368 * Validate course edit form data
370 * @param array $data raw form data
371 * @param object $context context of existing course or parent category if course does not exist
372 * @return array errors array
374 function enrol_course_edit_validation(array $data, $context) {
375 $errors = array();
376 $plugins = enrol_get_plugins(true);
378 if (!empty($data['id'])) {
379 $instances = enrol_get_instances($data['id'], false);
380 foreach ($instances as $instance) {
381 if (!isset($plugins[$instance->enrol])) {
382 continue;
384 $plugin = $plugins[$instance->enrol];
385 $errors = array_merge($errors, $plugin->course_edit_validation($instance, $data, $context));
387 } else {
388 foreach ($plugins as $plugin) {
389 $errors = array_merge($errors, $plugin->course_edit_validation(NULL, $data, $context));
393 return $errors;
397 * Update enrol instances after course edit form submission
398 * @param bool $inserted true means new course added, false course already existed
399 * @param object $course
400 * @param object $data form data
401 * @return void
403 function enrol_course_updated($inserted, $course, $data) {
404 global $DB, $CFG;
406 $plugins = enrol_get_plugins(true);
408 foreach ($plugins as $plugin) {
409 $plugin->course_updated($inserted, $course, $data);
414 * Add navigation nodes
415 * @param navigation_node $coursenode
416 * @param object $course
417 * @return void
419 function enrol_add_course_navigation(navigation_node $coursenode, $course) {
420 global $CFG;
422 $coursecontext = context_course::instance($course->id);
424 $instances = enrol_get_instances($course->id, true);
425 $plugins = enrol_get_plugins(true);
427 // we do not want to break all course pages if there is some borked enrol plugin, right?
428 foreach ($instances as $k=>$instance) {
429 if (!isset($plugins[$instance->enrol])) {
430 unset($instances[$k]);
434 $usersnode = $coursenode->add(get_string('users'), null, navigation_node::TYPE_CONTAINER, null, 'users');
436 if ($course->id != SITEID) {
437 // list all participants - allows assigning roles, groups, etc.
438 if (has_capability('moodle/course:enrolreview', $coursecontext)) {
439 $url = new moodle_url('/user/index.php', array('id'=>$course->id));
440 $usersnode->add(get_string('enrolledusers', 'enrol'), $url, navigation_node::TYPE_SETTING, null, 'review', new pix_icon('i/enrolusers', ''));
443 // manage enrol plugin instances
444 if (has_capability('moodle/course:enrolconfig', $coursecontext) or has_capability('moodle/course:enrolreview', $coursecontext)) {
445 $url = new moodle_url('/enrol/instances.php', array('id'=>$course->id));
446 } else {
447 $url = NULL;
449 $instancesnode = $usersnode->add(get_string('enrolmentinstances', 'enrol'), $url, navigation_node::TYPE_SETTING, null, 'manageinstances');
451 // each instance decides how to configure itself or how many other nav items are exposed
452 foreach ($instances as $instance) {
453 if (!isset($plugins[$instance->enrol])) {
454 continue;
456 $plugins[$instance->enrol]->add_course_navigation($instancesnode, $instance);
459 if (!$url) {
460 $instancesnode->trim_if_empty();
464 // Manage groups in this course or even frontpage
465 if (($course->groupmode || !$course->groupmodeforce) && has_capability('moodle/course:managegroups', $coursecontext)) {
466 $url = new moodle_url('/group/index.php', array('id'=>$course->id));
467 $usersnode->add(get_string('groups'), $url, navigation_node::TYPE_SETTING, null, 'groups', new pix_icon('i/group', ''));
470 if (has_any_capability(array( 'moodle/role:assign', 'moodle/role:safeoverride','moodle/role:override', 'moodle/role:review'), $coursecontext)) {
471 // Override roles
472 if (has_capability('moodle/role:review', $coursecontext)) {
473 $url = new moodle_url('/admin/roles/permissions.php', array('contextid'=>$coursecontext->id));
474 } else {
475 $url = NULL;
477 $permissionsnode = $usersnode->add(get_string('permissions', 'role'), $url, navigation_node::TYPE_SETTING, null, 'override');
479 // Add assign or override roles if allowed
480 if ($course->id == SITEID or (!empty($CFG->adminsassignrolesincourse) and is_siteadmin())) {
481 if (has_capability('moodle/role:assign', $coursecontext)) {
482 $url = new moodle_url('/admin/roles/assign.php', array('contextid'=>$coursecontext->id));
483 $permissionsnode->add(get_string('assignedroles', 'role'), $url, navigation_node::TYPE_SETTING, null, 'roles', new pix_icon('i/assignroles', ''));
486 // Check role permissions
487 if (has_any_capability(array('moodle/role:assign', 'moodle/role:safeoverride', 'moodle/role:override'), $coursecontext)) {
488 $url = new moodle_url('/admin/roles/check.php', array('contextid'=>$coursecontext->id));
489 $permissionsnode->add(get_string('checkpermissions', 'role'), $url, navigation_node::TYPE_SETTING, null, 'permissions', new pix_icon('i/checkpermissions', ''));
493 // Deal somehow with users that are not enrolled but still got a role somehow
494 if ($course->id != SITEID) {
495 //TODO, create some new UI for role assignments at course level
496 if (has_capability('moodle/course:reviewotherusers', $coursecontext)) {
497 $url = new moodle_url('/enrol/otherusers.php', array('id'=>$course->id));
498 $usersnode->add(get_string('notenrolledusers', 'enrol'), $url, navigation_node::TYPE_SETTING, null, 'otherusers', new pix_icon('i/assignroles', ''));
502 // just in case nothing was actually added
503 $usersnode->trim_if_empty();
505 if ($course->id != SITEID) {
506 if (isguestuser() or !isloggedin()) {
507 // guest account can not be enrolled - no links for them
508 } else if (is_enrolled($coursecontext)) {
509 // unenrol link if possible
510 foreach ($instances as $instance) {
511 if (!isset($plugins[$instance->enrol])) {
512 continue;
514 $plugin = $plugins[$instance->enrol];
515 if ($unenrollink = $plugin->get_unenrolself_link($instance)) {
516 $shortname = format_string($course->shortname, true, array('context' => $coursecontext));
517 $coursenode->add(get_string('unenrolme', 'core_enrol', $shortname), $unenrollink, navigation_node::TYPE_SETTING, null, 'unenrolself', new pix_icon('i/user', ''));
518 break;
519 //TODO. deal with multiple unenrol links - not likely case, but still...
522 } else {
523 // enrol link if possible
524 if (is_viewing($coursecontext)) {
525 // better not show any enrol link, this is intended for managers and inspectors
526 } else {
527 foreach ($instances as $instance) {
528 if (!isset($plugins[$instance->enrol])) {
529 continue;
531 $plugin = $plugins[$instance->enrol];
532 if ($plugin->show_enrolme_link($instance)) {
533 $url = new moodle_url('/enrol/index.php', array('id'=>$course->id));
534 $shortname = format_string($course->shortname, true, array('context' => $coursecontext));
535 $coursenode->add(get_string('enrolme', 'core_enrol', $shortname), $url, navigation_node::TYPE_SETTING, null, 'enrolself', new pix_icon('i/user', ''));
536 break;
545 * Returns list of courses current $USER is enrolled in and can access
547 * The $fields param is a list of field names to ADD so name just the fields you really need,
548 * which will be added and uniq'd.
550 * If $allaccessible is true, this will additionally return courses that the current user is not
551 * enrolled in, but can access because they are open to the user for other reasons (course view
552 * permission, currently viewing course as a guest, or course allows guest access without
553 * password).
555 * @param string|array $fields Extra fields to be returned (array or comma-separated list).
556 * @param string|null $sort Comma separated list of fields to sort by, defaults to respecting navsortmycoursessort.
557 * Allowed prefixes for sort fields are: "ul" for the user_lastaccess table, "c" for the courses table,
558 * "ue" for the user_enrolments table.
559 * @param int $limit max number of courses
560 * @param array $courseids the list of course ids to filter by
561 * @param bool $allaccessible Include courses user is not enrolled in, but can access
562 * @param int $offset Offset the result set by this number
563 * @param array $excludecourses IDs of hidden courses to exclude from search
564 * @return array
566 function enrol_get_my_courses($fields = null, $sort = null, $limit = 0, $courseids = [], $allaccessible = false,
567 $offset = 0, $excludecourses = []) {
568 global $DB, $USER, $CFG;
570 if ($sort === null) {
571 if (empty($CFG->navsortmycoursessort)) {
572 $sort = 'visible DESC, sortorder ASC';
573 } else {
574 $sort = 'visible DESC, '.$CFG->navsortmycoursessort.' ASC';
578 // Guest account does not have any enrolled courses.
579 if (!$allaccessible && (isguestuser() or !isloggedin())) {
580 return array();
583 $basefields = array('id', 'category', 'sortorder',
584 'shortname', 'fullname', 'idnumber',
585 'startdate', 'visible',
586 'groupmode', 'groupmodeforce', 'cacherev');
588 if (empty($fields)) {
589 $fields = $basefields;
590 } else if (is_string($fields)) {
591 // turn the fields from a string to an array
592 $fields = explode(',', $fields);
593 $fields = array_map('trim', $fields);
594 $fields = array_unique(array_merge($basefields, $fields));
595 } else if (is_array($fields)) {
596 $fields = array_unique(array_merge($basefields, $fields));
597 } else {
598 throw new coding_exception('Invalid $fields parameter in enrol_get_my_courses()');
600 if (in_array('*', $fields)) {
601 $fields = array('*');
604 $orderby = "";
605 $sort = trim($sort);
606 $sorttimeaccess = false;
607 $allowedsortprefixes = array('c', 'ul', 'ue');
608 if (!empty($sort)) {
609 $rawsorts = explode(',', $sort);
610 $sorts = array();
611 foreach ($rawsorts as $rawsort) {
612 $rawsort = trim($rawsort);
613 if (preg_match('/^ul\.(\S*)\s(asc|desc)/i', $rawsort, $matches)) {
614 if (strcasecmp($matches[2], 'asc') == 0) {
615 $sorts[] = 'COALESCE(ul.' . $matches[1] . ', 0) ASC';
616 } else {
617 $sorts[] = 'COALESCE(ul.' . $matches[1] . ', 0) DESC';
619 $sorttimeaccess = true;
620 } else if (strpos($rawsort, '.') !== false) {
621 $prefix = explode('.', $rawsort);
622 if (in_array($prefix[0], $allowedsortprefixes)) {
623 $sorts[] = trim($rawsort);
624 } else {
625 throw new coding_exception('Invalid $sort parameter in enrol_get_my_courses()');
627 } else {
628 $sorts[] = 'c.'.trim($rawsort);
631 $sort = implode(',', $sorts);
632 $orderby = "ORDER BY $sort";
635 $wheres = array("c.id <> :siteid");
636 $params = array('siteid'=>SITEID);
638 if (isset($USER->loginascontext) and $USER->loginascontext->contextlevel == CONTEXT_COURSE) {
639 // list _only_ this course - anything else is asking for trouble...
640 $wheres[] = "courseid = :loginas";
641 $params['loginas'] = $USER->loginascontext->instanceid;
644 $coursefields = 'c.' .join(',c.', $fields);
645 $ccselect = ', ' . context_helper::get_preload_record_columns_sql('ctx');
646 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
647 $params['contextlevel'] = CONTEXT_COURSE;
648 $wheres = implode(" AND ", $wheres);
650 $timeaccessselect = "";
651 $timeaccessjoin = "";
653 if (!empty($courseids)) {
654 list($courseidssql, $courseidsparams) = $DB->get_in_or_equal($courseids, SQL_PARAMS_NAMED);
655 $wheres = sprintf("%s AND c.id %s", $wheres, $courseidssql);
656 $params = array_merge($params, $courseidsparams);
659 if (!empty($excludecourses)) {
660 list($courseidssql, $courseidsparams) = $DB->get_in_or_equal($excludecourses, SQL_PARAMS_NAMED, 'param', false);
661 $wheres = sprintf("%s AND c.id %s", $wheres, $courseidssql);
662 $params = array_merge($params, $courseidsparams);
665 $courseidsql = "";
666 // Logged-in, non-guest users get their enrolled courses.
667 if (!isguestuser() && isloggedin()) {
668 $courseidsql .= "
669 SELECT DISTINCT e.courseid
670 FROM {enrol} e
671 JOIN {user_enrolments} ue ON (ue.enrolid = e.id AND ue.userid = :userid1)
672 WHERE ue.status = :active AND e.status = :enabled AND ue.timestart < :now1
673 AND (ue.timeend = 0 OR ue.timeend > :now2)";
674 $params['userid1'] = $USER->id;
675 $params['active'] = ENROL_USER_ACTIVE;
676 $params['enabled'] = ENROL_INSTANCE_ENABLED;
677 $params['now1'] = round(time(), -2); // Improves db caching.
678 $params['now2'] = $params['now1'];
680 if ($sorttimeaccess) {
681 $params['userid2'] = $USER->id;
682 $timeaccessselect = ', ul.timeaccess as lastaccessed';
683 $timeaccessjoin = "LEFT JOIN {user_lastaccess} ul ON (ul.courseid = c.id AND ul.userid = :userid2)";
687 // When including non-enrolled but accessible courses...
688 if ($allaccessible) {
689 if (is_siteadmin()) {
690 // Site admins can access all courses.
691 $courseidsql = "SELECT DISTINCT c2.id AS courseid FROM {course} c2";
692 } else {
693 // If we used the enrolment as well, then this will be UNIONed.
694 if ($courseidsql) {
695 $courseidsql .= " UNION ";
698 // Include courses with guest access and no password.
699 $courseidsql .= "
700 SELECT DISTINCT e.courseid
701 FROM {enrol} e
702 WHERE e.enrol = 'guest' AND e.password = :emptypass AND e.status = :enabled2";
703 $params['emptypass'] = '';
704 $params['enabled2'] = ENROL_INSTANCE_ENABLED;
706 // Include courses where the current user is currently using guest access (may include
707 // those which require a password).
708 $courseids = [];
709 $accessdata = get_user_accessdata($USER->id);
710 foreach ($accessdata['ra'] as $contextpath => $roles) {
711 if (array_key_exists($CFG->guestroleid, $roles)) {
712 // Work out the course id from context path.
713 $context = context::instance_by_id(preg_replace('~^.*/~', '', $contextpath));
714 if ($context instanceof context_course) {
715 $courseids[$context->instanceid] = true;
720 // Include courses where the current user has moodle/course:view capability.
721 $courses = get_user_capability_course('moodle/course:view', null, false);
722 if (!$courses) {
723 $courses = [];
725 foreach ($courses as $course) {
726 $courseids[$course->id] = true;
729 // If there are any in either category, list them individually.
730 if ($courseids) {
731 list ($allowedsql, $allowedparams) = $DB->get_in_or_equal(
732 array_keys($courseids), SQL_PARAMS_NAMED);
733 $courseidsql .= "
734 UNION
735 SELECT DISTINCT c3.id AS courseid
736 FROM {course} c3
737 WHERE c3.id $allowedsql";
738 $params = array_merge($params, $allowedparams);
743 // Note: we can not use DISTINCT + text fields due to Oracle and MS limitations, that is why
744 // we have the subselect there.
745 $sql = "SELECT $coursefields $ccselect $timeaccessselect
746 FROM {course} c
747 JOIN ($courseidsql) en ON (en.courseid = c.id)
748 $timeaccessjoin
749 $ccjoin
750 WHERE $wheres
751 $orderby";
753 $courses = $DB->get_records_sql($sql, $params, $offset, $limit);
755 // preload contexts and check visibility
756 foreach ($courses as $id=>$course) {
757 context_helper::preload_from_record($course);
758 if (!$course->visible) {
759 if (!$context = context_course::instance($id, IGNORE_MISSING)) {
760 unset($courses[$id]);
761 continue;
763 if (!has_capability('moodle/course:viewhiddencourses', $context)) {
764 unset($courses[$id]);
765 continue;
768 $courses[$id] = $course;
771 //wow! Is that really all? :-D
773 return $courses;
777 * Returns course enrolment information icons.
779 * @param object $course
780 * @param array $instances enrol instances of this course, improves performance
781 * @return array of pix_icon
783 function enrol_get_course_info_icons($course, array $instances = NULL) {
784 $icons = array();
785 if (is_null($instances)) {
786 $instances = enrol_get_instances($course->id, true);
788 $plugins = enrol_get_plugins(true);
789 foreach ($plugins as $name => $plugin) {
790 $pis = array();
791 foreach ($instances as $instance) {
792 if ($instance->status != ENROL_INSTANCE_ENABLED or $instance->courseid != $course->id) {
793 debugging('Invalid instances parameter submitted in enrol_get_info_icons()');
794 continue;
796 if ($instance->enrol == $name) {
797 $pis[$instance->id] = $instance;
800 if ($pis) {
801 $icons = array_merge($icons, $plugin->get_info_icons($pis));
804 return $icons;
808 * Returns course enrolment detailed information.
810 * @param object $course
811 * @return array of html fragments - can be used to construct lists
813 function enrol_get_course_description_texts($course) {
814 $lines = array();
815 $instances = enrol_get_instances($course->id, true);
816 $plugins = enrol_get_plugins(true);
817 foreach ($instances as $instance) {
818 if (!isset($plugins[$instance->enrol])) {
819 //weird
820 continue;
822 $plugin = $plugins[$instance->enrol];
823 $text = $plugin->get_description_text($instance);
824 if ($text !== NULL) {
825 $lines[] = $text;
828 return $lines;
832 * Returns list of courses user is enrolled into.
834 * Note: Use {@link enrol_get_all_users_courses()} if you need the list without any capability checks.
836 * The $fields param is a list of field names to ADD so name just the fields you really need,
837 * which will be added and uniq'd.
839 * @param int $userid User whose courses are returned, defaults to the current user.
840 * @param bool $onlyactive Return only active enrolments in courses user may see.
841 * @param string|array $fields Extra fields to be returned (array or comma-separated list).
842 * @param string|null $sort Comma separated list of fields to sort by, defaults to respecting navsortmycoursessort.
843 * @return array
845 function enrol_get_users_courses($userid, $onlyactive = false, $fields = null, $sort = null) {
846 global $DB;
848 $courses = enrol_get_all_users_courses($userid, $onlyactive, $fields, $sort);
850 // preload contexts and check visibility
851 if ($onlyactive) {
852 foreach ($courses as $id=>$course) {
853 context_helper::preload_from_record($course);
854 if (!$course->visible) {
855 if (!$context = context_course::instance($id)) {
856 unset($courses[$id]);
857 continue;
859 if (!has_capability('moodle/course:viewhiddencourses', $context, $userid)) {
860 unset($courses[$id]);
861 continue;
867 return $courses;
872 * Returns list of roles per users into course.
874 * @param int $courseid Course id.
875 * @return array Array[$userid][$roleid] = role_assignment.
877 function enrol_get_course_users_roles(int $courseid) : array {
878 global $DB;
880 $context = context_course::instance($courseid);
882 $roles = array();
884 $records = $DB->get_recordset('role_assignments', array('contextid' => $context->id));
885 foreach ($records as $record) {
886 if (isset($roles[$record->userid]) === false) {
887 $roles[$record->userid] = array();
889 $roles[$record->userid][$record->roleid] = $record;
891 $records->close();
893 return $roles;
897 * Can user access at least one enrolled course?
899 * Cheat if necessary, but find out as fast as possible!
901 * @param int|stdClass $user null means use current user
902 * @return bool
904 function enrol_user_sees_own_courses($user = null) {
905 global $USER;
907 if ($user === null) {
908 $user = $USER;
910 $userid = is_object($user) ? $user->id : $user;
912 // Guest account does not have any courses
913 if (isguestuser($userid) or empty($userid)) {
914 return false;
917 // Let's cheat here if this is the current user,
918 // if user accessed any course recently, then most probably
919 // we do not need to query the database at all.
920 if ($USER->id == $userid) {
921 if (!empty($USER->enrol['enrolled'])) {
922 foreach ($USER->enrol['enrolled'] as $until) {
923 if ($until > time()) {
924 return true;
930 // Now the slow way.
931 $courses = enrol_get_all_users_courses($userid, true);
932 foreach($courses as $course) {
933 if ($course->visible) {
934 return true;
936 context_helper::preload_from_record($course);
937 $context = context_course::instance($course->id);
938 if (has_capability('moodle/course:viewhiddencourses', $context, $user)) {
939 return true;
943 return false;
947 * Returns list of courses user is enrolled into without performing any capability checks.
949 * The $fields param is a list of field names to ADD so name just the fields you really need,
950 * which will be added and uniq'd.
952 * @param int $userid User whose courses are returned, defaults to the current user.
953 * @param bool $onlyactive Return only active enrolments in courses user may see.
954 * @param string|array $fields Extra fields to be returned (array or comma-separated list).
955 * @param string|null $sort Comma separated list of fields to sort by, defaults to respecting navsortmycoursessort.
956 * @return array
958 function enrol_get_all_users_courses($userid, $onlyactive = false, $fields = null, $sort = null) {
959 global $CFG, $DB;
961 if ($sort === null) {
962 if (empty($CFG->navsortmycoursessort)) {
963 $sort = 'visible DESC, sortorder ASC';
964 } else {
965 $sort = 'visible DESC, '.$CFG->navsortmycoursessort.' ASC';
969 // Guest account does not have any courses
970 if (isguestuser($userid) or empty($userid)) {
971 return(array());
974 $basefields = array('id', 'category', 'sortorder',
975 'shortname', 'fullname', 'idnumber',
976 'startdate', 'visible',
977 'defaultgroupingid',
978 'groupmode', 'groupmodeforce');
980 if (empty($fields)) {
981 $fields = $basefields;
982 } else if (is_string($fields)) {
983 // turn the fields from a string to an array
984 $fields = explode(',', $fields);
985 $fields = array_map('trim', $fields);
986 $fields = array_unique(array_merge($basefields, $fields));
987 } else if (is_array($fields)) {
988 $fields = array_unique(array_merge($basefields, $fields));
989 } else {
990 throw new coding_exception('Invalid $fields parameter in enrol_get_all_users_courses()');
992 if (in_array('*', $fields)) {
993 $fields = array('*');
996 $orderby = "";
997 $sort = trim($sort);
998 if (!empty($sort)) {
999 $rawsorts = explode(',', $sort);
1000 $sorts = array();
1001 foreach ($rawsorts as $rawsort) {
1002 $rawsort = trim($rawsort);
1003 if (strpos($rawsort, 'c.') === 0) {
1004 $rawsort = substr($rawsort, 2);
1006 $sorts[] = trim($rawsort);
1008 $sort = 'c.'.implode(',c.', $sorts);
1009 $orderby = "ORDER BY $sort";
1012 $params = array('siteid'=>SITEID);
1014 if ($onlyactive) {
1015 $subwhere = "WHERE ue.status = :active AND e.status = :enabled AND ue.timestart < :now1 AND (ue.timeend = 0 OR ue.timeend > :now2)";
1016 $params['now1'] = round(time(), -2); // improves db caching
1017 $params['now2'] = $params['now1'];
1018 $params['active'] = ENROL_USER_ACTIVE;
1019 $params['enabled'] = ENROL_INSTANCE_ENABLED;
1020 } else {
1021 $subwhere = "";
1024 $coursefields = 'c.' .join(',c.', $fields);
1025 $ccselect = ', ' . context_helper::get_preload_record_columns_sql('ctx');
1026 $ccjoin = "LEFT JOIN {context} ctx ON (ctx.instanceid = c.id AND ctx.contextlevel = :contextlevel)";
1027 $params['contextlevel'] = CONTEXT_COURSE;
1029 //note: we can not use DISTINCT + text fields due to Oracle and MS limitations, that is why we have the subselect there
1030 $sql = "SELECT $coursefields $ccselect
1031 FROM {course} c
1032 JOIN (SELECT DISTINCT e.courseid
1033 FROM {enrol} e
1034 JOIN {user_enrolments} ue ON (ue.enrolid = e.id AND ue.userid = :userid)
1035 $subwhere
1036 ) en ON (en.courseid = c.id)
1037 $ccjoin
1038 WHERE c.id <> :siteid
1039 $orderby";
1040 $params['userid'] = $userid;
1042 $courses = $DB->get_records_sql($sql, $params);
1044 return $courses;
1050 * Called when user is about to be deleted.
1051 * @param object $user
1052 * @return void
1054 function enrol_user_delete($user) {
1055 global $DB;
1057 $plugins = enrol_get_plugins(true);
1058 foreach ($plugins as $plugin) {
1059 $plugin->user_delete($user);
1062 // force cleanup of all broken enrolments
1063 $DB->delete_records('user_enrolments', array('userid'=>$user->id));
1067 * Called when course is about to be deleted.
1068 * @param stdClass $course
1069 * @return void
1071 function enrol_course_delete($course) {
1072 global $DB;
1074 $instances = enrol_get_instances($course->id, false);
1075 $plugins = enrol_get_plugins(true);
1076 foreach ($instances as $instance) {
1077 if (isset($plugins[$instance->enrol])) {
1078 $plugins[$instance->enrol]->delete_instance($instance);
1080 // low level delete in case plugin did not do it
1081 $DB->delete_records('user_enrolments', array('enrolid'=>$instance->id));
1082 $DB->delete_records('role_assignments', array('itemid'=>$instance->id, 'component'=>'enrol_'.$instance->enrol));
1083 $DB->delete_records('user_enrolments', array('enrolid'=>$instance->id));
1084 $DB->delete_records('enrol', array('id'=>$instance->id));
1089 * Try to enrol user via default internal auth plugin.
1091 * For now this is always using the manual enrol plugin...
1093 * @param $courseid
1094 * @param $userid
1095 * @param $roleid
1096 * @param $timestart
1097 * @param $timeend
1098 * @return bool success
1100 function enrol_try_internal_enrol($courseid, $userid, $roleid = null, $timestart = 0, $timeend = 0) {
1101 global $DB;
1103 //note: this is hardcoded to manual plugin for now
1105 if (!enrol_is_enabled('manual')) {
1106 return false;
1109 if (!$enrol = enrol_get_plugin('manual')) {
1110 return false;
1112 if (!$instances = $DB->get_records('enrol', array('enrol'=>'manual', 'courseid'=>$courseid, 'status'=>ENROL_INSTANCE_ENABLED), 'sortorder,id ASC')) {
1113 return false;
1115 $instance = reset($instances);
1117 $enrol->enrol_user($instance, $userid, $roleid, $timestart, $timeend);
1119 return true;
1123 * Is there a chance users might self enrol
1124 * @param int $courseid
1125 * @return bool
1127 function enrol_selfenrol_available($courseid) {
1128 $result = false;
1130 $plugins = enrol_get_plugins(true);
1131 $enrolinstances = enrol_get_instances($courseid, true);
1132 foreach($enrolinstances as $instance) {
1133 if (!isset($plugins[$instance->enrol])) {
1134 continue;
1136 if ($instance->enrol === 'guest') {
1137 // blacklist known temporary guest plugins
1138 continue;
1140 if ($plugins[$instance->enrol]->show_enrolme_link($instance)) {
1141 $result = true;
1142 break;
1146 return $result;
1150 * This function returns the end of current active user enrolment.
1152 * It deals correctly with multiple overlapping user enrolments.
1154 * @param int $courseid
1155 * @param int $userid
1156 * @return int|bool timestamp when active enrolment ends, false means no active enrolment now, 0 means never
1158 function enrol_get_enrolment_end($courseid, $userid) {
1159 global $DB;
1161 $sql = "SELECT ue.*
1162 FROM {user_enrolments} ue
1163 JOIN {enrol} e ON (e.id = ue.enrolid AND e.courseid = :courseid)
1164 JOIN {user} u ON u.id = ue.userid
1165 WHERE ue.userid = :userid AND ue.status = :active AND e.status = :enabled AND u.deleted = 0";
1166 $params = array('enabled'=>ENROL_INSTANCE_ENABLED, 'active'=>ENROL_USER_ACTIVE, 'userid'=>$userid, 'courseid'=>$courseid);
1168 if (!$enrolments = $DB->get_records_sql($sql, $params)) {
1169 return false;
1172 $changes = array();
1174 foreach ($enrolments as $ue) {
1175 $start = (int)$ue->timestart;
1176 $end = (int)$ue->timeend;
1177 if ($end != 0 and $end < $start) {
1178 debugging('Invalid enrolment start or end in user_enrolment id:'.$ue->id);
1179 continue;
1181 if (isset($changes[$start])) {
1182 $changes[$start] = $changes[$start] + 1;
1183 } else {
1184 $changes[$start] = 1;
1186 if ($end === 0) {
1187 // no end
1188 } else if (isset($changes[$end])) {
1189 $changes[$end] = $changes[$end] - 1;
1190 } else {
1191 $changes[$end] = -1;
1195 // let's sort then enrolment starts&ends and go through them chronologically,
1196 // looking for current status and the next future end of enrolment
1197 ksort($changes);
1199 $now = time();
1200 $current = 0;
1201 $present = null;
1203 foreach ($changes as $time => $change) {
1204 if ($time > $now) {
1205 if ($present === null) {
1206 // we have just went past current time
1207 $present = $current;
1208 if ($present < 1) {
1209 // no enrolment active
1210 return false;
1213 if ($present !== null) {
1214 // we are already in the future - look for possible end
1215 if ($current + $change < 1) {
1216 return $time;
1220 $current += $change;
1223 if ($current > 0) {
1224 return 0;
1225 } else {
1226 return false;
1231 * Is current user accessing course via this enrolment method?
1233 * This is intended for operations that are going to affect enrol instances.
1235 * @param stdClass $instance enrol instance
1236 * @return bool
1238 function enrol_accessing_via_instance(stdClass $instance) {
1239 global $DB, $USER;
1241 if (empty($instance->id)) {
1242 return false;
1245 if (is_siteadmin()) {
1246 // Admins may go anywhere.
1247 return false;
1250 return $DB->record_exists('user_enrolments', array('userid'=>$USER->id, 'enrolid'=>$instance->id));
1254 * Returns true if user is enrolled (is participating) in course
1255 * this is intended for students and teachers.
1257 * Since 2.2 the result for active enrolments and current user are cached.
1259 * @param context $context
1260 * @param int|stdClass $user if null $USER is used, otherwise user object or id expected
1261 * @param string $withcapability extra capability name
1262 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1263 * @return bool
1265 function is_enrolled(context $context, $user = null, $withcapability = '', $onlyactive = false) {
1266 global $USER, $DB;
1268 // First find the course context.
1269 $coursecontext = $context->get_course_context();
1271 // Make sure there is a real user specified.
1272 if ($user === null) {
1273 $userid = isset($USER->id) ? $USER->id : 0;
1274 } else {
1275 $userid = is_object($user) ? $user->id : $user;
1278 if (empty($userid)) {
1279 // Not-logged-in!
1280 return false;
1281 } else if (isguestuser($userid)) {
1282 // Guest account can not be enrolled anywhere.
1283 return false;
1286 // Note everybody participates on frontpage, so for other contexts...
1287 if ($coursecontext->instanceid != SITEID) {
1288 // Try cached info first - the enrolled flag is set only when active enrolment present.
1289 if ($USER->id == $userid) {
1290 $coursecontext->reload_if_dirty();
1291 if (isset($USER->enrol['enrolled'][$coursecontext->instanceid])) {
1292 if ($USER->enrol['enrolled'][$coursecontext->instanceid] > time()) {
1293 if ($withcapability and !has_capability($withcapability, $context, $userid)) {
1294 return false;
1296 return true;
1301 if ($onlyactive) {
1302 // Look for active enrolments only.
1303 $until = enrol_get_enrolment_end($coursecontext->instanceid, $userid);
1305 if ($until === false) {
1306 return false;
1309 if ($USER->id == $userid) {
1310 if ($until == 0) {
1311 $until = ENROL_MAX_TIMESTAMP;
1313 $USER->enrol['enrolled'][$coursecontext->instanceid] = $until;
1314 if (isset($USER->enrol['tempguest'][$coursecontext->instanceid])) {
1315 unset($USER->enrol['tempguest'][$coursecontext->instanceid]);
1316 remove_temp_course_roles($coursecontext);
1320 } else {
1321 // Any enrolment is good for us here, even outdated, disabled or inactive.
1322 $sql = "SELECT 'x'
1323 FROM {user_enrolments} ue
1324 JOIN {enrol} e ON (e.id = ue.enrolid AND e.courseid = :courseid)
1325 JOIN {user} u ON u.id = ue.userid
1326 WHERE ue.userid = :userid AND u.deleted = 0";
1327 $params = array('userid' => $userid, 'courseid' => $coursecontext->instanceid);
1328 if (!$DB->record_exists_sql($sql, $params)) {
1329 return false;
1334 if ($withcapability and !has_capability($withcapability, $context, $userid)) {
1335 return false;
1338 return true;
1342 * Returns an array of joins, wheres and params that will limit the group of
1343 * users to only those enrolled and with given capability (if specified).
1345 * Note this join will return duplicate rows for users who have been enrolled
1346 * several times (e.g. as manual enrolment, and as self enrolment). You may
1347 * need to use a SELECT DISTINCT in your query (see get_enrolled_sql for example).
1349 * @param context $context
1350 * @param string $prefix optional, a prefix to the user id column
1351 * @param string|array $capability optional, may include a capability name, or array of names.
1352 * If an array is provided then this is the equivalent of a logical 'OR',
1353 * i.e. the user needs to have one of these capabilities.
1354 * @param int $group optional, 0 indicates no current group and USERSWITHOUTGROUP users without any group; otherwise the group id
1355 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1356 * @param bool $onlysuspended inverse of onlyactive, consider only suspended enrolments
1357 * @param int $enrolid The enrolment ID. If not 0, only users enrolled using this enrolment method will be returned.
1358 * @return \core\dml\sql_join Contains joins, wheres, params
1360 function get_enrolled_with_capabilities_join(context $context, $prefix = '', $capability = '', $group = 0,
1361 $onlyactive = false, $onlysuspended = false, $enrolid = 0) {
1362 $uid = $prefix . 'u.id';
1363 $joins = array();
1364 $wheres = array();
1366 $enrolledjoin = get_enrolled_join($context, $uid, $onlyactive, $onlysuspended, $enrolid);
1367 $joins[] = $enrolledjoin->joins;
1368 $wheres[] = $enrolledjoin->wheres;
1369 $params = $enrolledjoin->params;
1371 if (!empty($capability)) {
1372 $capjoin = get_with_capability_join($context, $capability, $uid);
1373 $joins[] = $capjoin->joins;
1374 $wheres[] = $capjoin->wheres;
1375 $params = array_merge($params, $capjoin->params);
1378 if ($group) {
1379 $groupjoin = groups_get_members_join($group, $uid, $context);
1380 $joins[] = $groupjoin->joins;
1381 $params = array_merge($params, $groupjoin->params);
1382 if (!empty($groupjoin->wheres)) {
1383 $wheres[] = $groupjoin->wheres;
1387 $joins = implode("\n", $joins);
1388 $wheres[] = "{$prefix}u.deleted = 0";
1389 $wheres = implode(" AND ", $wheres);
1391 return new \core\dml\sql_join($joins, $wheres, $params);
1395 * Returns array with sql code and parameters returning all ids
1396 * of users enrolled into course.
1398 * This function is using 'eu[0-9]+_' prefix for table names and parameters.
1400 * @param context $context
1401 * @param string $withcapability
1402 * @param int $groupid 0 means ignore groups, USERSWITHOUTGROUP without any group and any other value limits the result by group id
1403 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1404 * @param bool $onlysuspended inverse of onlyactive, consider only suspended enrolments
1405 * @param int $enrolid The enrolment ID. If not 0, only users enrolled using this enrolment method will be returned.
1406 * @return array list($sql, $params)
1408 function get_enrolled_sql(context $context, $withcapability = '', $groupid = 0, $onlyactive = false, $onlysuspended = false,
1409 $enrolid = 0) {
1411 // Use unique prefix just in case somebody makes some SQL magic with the result.
1412 static $i = 0;
1413 $i++;
1414 $prefix = 'eu' . $i . '_';
1416 $capjoin = get_enrolled_with_capabilities_join(
1417 $context, $prefix, $withcapability, $groupid, $onlyactive, $onlysuspended, $enrolid);
1419 $sql = "SELECT DISTINCT {$prefix}u.id
1420 FROM {user} {$prefix}u
1421 $capjoin->joins
1422 WHERE $capjoin->wheres";
1424 return array($sql, $capjoin->params);
1428 * Returns array with sql joins and parameters returning all ids
1429 * of users enrolled into course.
1431 * This function is using 'ej[0-9]+_' prefix for table names and parameters.
1433 * @throws coding_exception
1435 * @param context $context
1436 * @param string $useridcolumn User id column used the calling query, e.g. u.id
1437 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1438 * @param bool $onlysuspended inverse of onlyactive, consider only suspended enrolments
1439 * @param int $enrolid The enrolment ID. If not 0, only users enrolled using this enrolment method will be returned.
1440 * @return \core\dml\sql_join Contains joins, wheres, params
1442 function get_enrolled_join(context $context, $useridcolumn, $onlyactive = false, $onlysuspended = false, $enrolid = 0) {
1443 // Use unique prefix just in case somebody makes some SQL magic with the result.
1444 static $i = 0;
1445 $i++;
1446 $prefix = 'ej' . $i . '_';
1448 // First find the course context.
1449 $coursecontext = $context->get_course_context();
1451 $isfrontpage = ($coursecontext->instanceid == SITEID);
1453 if ($onlyactive && $onlysuspended) {
1454 throw new coding_exception("Both onlyactive and onlysuspended are set, this is probably not what you want!");
1456 if ($isfrontpage && $onlysuspended) {
1457 throw new coding_exception("onlysuspended is not supported on frontpage; please add your own early-exit!");
1460 $joins = array();
1461 $wheres = array();
1462 $params = array();
1464 $wheres[] = "1 = 1"; // Prevent broken where clauses later on.
1466 // Note all users are "enrolled" on the frontpage, but for others...
1467 if (!$isfrontpage) {
1468 $where1 = "{$prefix}ue.status = :{$prefix}active AND {$prefix}e.status = :{$prefix}enabled";
1469 $where2 = "{$prefix}ue.timestart < :{$prefix}now1 AND ({$prefix}ue.timeend = 0 OR {$prefix}ue.timeend > :{$prefix}now2)";
1471 $enrolconditions = array(
1472 "{$prefix}e.id = {$prefix}ue.enrolid",
1473 "{$prefix}e.courseid = :{$prefix}courseid",
1475 if ($enrolid) {
1476 $enrolconditions[] = "{$prefix}e.id = :{$prefix}enrolid";
1477 $params[$prefix . 'enrolid'] = $enrolid;
1479 $enrolconditionssql = implode(" AND ", $enrolconditions);
1480 $ejoin = "JOIN {enrol} {$prefix}e ON ($enrolconditionssql)";
1482 $params[$prefix.'courseid'] = $coursecontext->instanceid;
1484 if (!$onlysuspended) {
1485 $joins[] = "JOIN {user_enrolments} {$prefix}ue ON {$prefix}ue.userid = $useridcolumn";
1486 $joins[] = $ejoin;
1487 if ($onlyactive) {
1488 $wheres[] = "$where1 AND $where2";
1490 } else {
1491 // Suspended only where there is enrolment but ALL are suspended.
1492 // Consider multiple enrols where one is not suspended or plain role_assign.
1493 $enrolselect = "SELECT DISTINCT {$prefix}ue.userid FROM {user_enrolments} {$prefix}ue $ejoin WHERE $where1 AND $where2";
1494 $joins[] = "JOIN {user_enrolments} {$prefix}ue1 ON {$prefix}ue1.userid = $useridcolumn";
1495 $enrolconditions = array(
1496 "{$prefix}e1.id = {$prefix}ue1.enrolid",
1497 "{$prefix}e1.courseid = :{$prefix}_e1_courseid",
1499 if ($enrolid) {
1500 $enrolconditions[] = "{$prefix}e1.id = :{$prefix}e1_enrolid";
1501 $params[$prefix . 'e1_enrolid'] = $enrolid;
1503 $enrolconditionssql = implode(" AND ", $enrolconditions);
1504 $joins[] = "JOIN {enrol} {$prefix}e1 ON ($enrolconditionssql)";
1505 $params["{$prefix}_e1_courseid"] = $coursecontext->instanceid;
1506 $wheres[] = "$useridcolumn NOT IN ($enrolselect)";
1509 if ($onlyactive || $onlysuspended) {
1510 $now = round(time(), -2); // Rounding helps caching in DB.
1511 $params = array_merge($params, array($prefix . 'enabled' => ENROL_INSTANCE_ENABLED,
1512 $prefix . 'active' => ENROL_USER_ACTIVE,
1513 $prefix . 'now1' => $now, $prefix . 'now2' => $now));
1517 $joins = implode("\n", $joins);
1518 $wheres = implode(" AND ", $wheres);
1520 return new \core\dml\sql_join($joins, $wheres, $params);
1524 * Returns list of users enrolled into course.
1526 * @param context $context
1527 * @param string $withcapability
1528 * @param int $groupid 0 means ignore groups, USERSWITHOUTGROUP without any group and any other value limits the result by group id
1529 * @param string $userfields requested user record fields
1530 * @param string $orderby
1531 * @param int $limitfrom return a subset of records, starting at this point (optional, required if $limitnum is set).
1532 * @param int $limitnum return a subset comprising this many records (optional, required if $limitfrom is set).
1533 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1534 * @return array of user records
1536 function get_enrolled_users(context $context, $withcapability = '', $groupid = 0, $userfields = 'u.*', $orderby = null,
1537 $limitfrom = 0, $limitnum = 0, $onlyactive = false) {
1538 global $DB;
1540 list($esql, $params) = get_enrolled_sql($context, $withcapability, $groupid, $onlyactive);
1541 $sql = "SELECT $userfields
1542 FROM {user} u
1543 JOIN ($esql) je ON je.id = u.id
1544 WHERE u.deleted = 0";
1546 if ($orderby) {
1547 $sql = "$sql ORDER BY $orderby";
1548 } else {
1549 list($sort, $sortparams) = users_order_by_sql('u');
1550 $sql = "$sql ORDER BY $sort";
1551 $params = array_merge($params, $sortparams);
1554 return $DB->get_records_sql($sql, $params, $limitfrom, $limitnum);
1558 * Counts list of users enrolled into course (as per above function)
1560 * @param context $context
1561 * @param string $withcapability
1562 * @param int $groupid 0 means ignore groups, any other value limits the result by group id
1563 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1564 * @return array of user records
1566 function count_enrolled_users(context $context, $withcapability = '', $groupid = 0, $onlyactive = false) {
1567 global $DB;
1569 $capjoin = get_enrolled_with_capabilities_join(
1570 $context, '', $withcapability, $groupid, $onlyactive);
1572 $sql = "SELECT COUNT(DISTINCT u.id)
1573 FROM {user} u
1574 $capjoin->joins
1575 WHERE $capjoin->wheres AND u.deleted = 0";
1577 return $DB->count_records_sql($sql, $capjoin->params);
1581 * Send welcome email "from" options.
1583 * @return array list of from options
1585 function enrol_send_welcome_email_options() {
1586 return [
1587 ENROL_DO_NOT_SEND_EMAIL => get_string('no'),
1588 ENROL_SEND_EMAIL_FROM_COURSE_CONTACT => get_string('sendfromcoursecontact', 'enrol'),
1589 ENROL_SEND_EMAIL_FROM_KEY_HOLDER => get_string('sendfromkeyholder', 'enrol'),
1590 ENROL_SEND_EMAIL_FROM_NOREPLY => get_string('sendfromnoreply', 'enrol')
1595 * Serve the user enrolment form as a fragment.
1597 * @param array $args List of named arguments for the fragment loader.
1598 * @return string
1600 function enrol_output_fragment_user_enrolment_form($args) {
1601 global $CFG, $DB;
1603 $args = (object) $args;
1604 $context = $args->context;
1605 require_capability('moodle/course:enrolreview', $context);
1607 $ueid = $args->ueid;
1608 $userenrolment = $DB->get_record('user_enrolments', ['id' => $ueid], '*', MUST_EXIST);
1609 $instance = $DB->get_record('enrol', ['id' => $userenrolment->enrolid], '*', MUST_EXIST);
1610 $plugin = enrol_get_plugin($instance->enrol);
1611 $customdata = [
1612 'ue' => $userenrolment,
1613 'modal' => true,
1614 'enrolinstancename' => $plugin->get_instance_name($instance)
1617 // Set the data if applicable.
1618 $data = [];
1619 if (isset($args->formdata)) {
1620 $serialiseddata = json_decode($args->formdata);
1621 parse_str($serialiseddata, $data);
1624 require_once("$CFG->dirroot/enrol/editenrolment_form.php");
1625 $mform = new \enrol_user_enrolment_form(null, $customdata, 'post', '', null, true, $data);
1627 if (!empty($data)) {
1628 $mform->set_data($data);
1629 $mform->is_validated();
1632 return $mform->render();
1636 * Returns the course where a user enrolment belong to.
1638 * @param int $ueid user_enrolments id
1639 * @return stdClass
1641 function enrol_get_course_by_user_enrolment_id($ueid) {
1642 global $DB;
1643 $sql = "SELECT c.* FROM {user_enrolments} ue
1644 JOIN {enrol} e ON e.id = ue.enrolid
1645 JOIN {course} c ON c.id = e.courseid
1646 WHERE ue.id = :ueid";
1647 return $DB->get_record_sql($sql, array('ueid' => $ueid));
1651 * Return all users enrolled in a course.
1653 * @param int $courseid Course id or false if using $uefilter (user enrolment ids may belong to different courses)
1654 * @param bool $onlyactive consider only active enrolments in enabled plugins and time restrictions
1655 * @param array $usersfilter Limit the results obtained to this list of user ids. $uefilter compatibility not guaranteed.
1656 * @param array $uefilter Limit the results obtained to this list of user enrolment ids. $usersfilter compatibility not guaranteed.
1657 * @return stdClass[]
1659 function enrol_get_course_users($courseid = false, $onlyactive = false, $usersfilter = array(), $uefilter = array()) {
1660 global $DB;
1662 if (!$courseid && !$usersfilter && !$uefilter) {
1663 throw new \coding_exception('You should specify at least 1 filter: courseid, users or user enrolments');
1666 $sql = "SELECT ue.id AS ueid, ue.status AS uestatus, ue.enrolid AS ueenrolid, ue.timestart AS uetimestart,
1667 ue.timeend AS uetimeend, ue.modifierid AS uemodifierid, ue.timecreated AS uetimecreated,
1668 ue.timemodified AS uetimemodified,
1669 u.* FROM {user_enrolments} ue
1670 JOIN {enrol} e ON e.id = ue.enrolid
1671 JOIN {user} u ON ue.userid = u.id
1672 WHERE ";
1673 $params = array();
1675 if ($courseid) {
1676 $conditions[] = "e.courseid = :courseid";
1677 $params['courseid'] = $courseid;
1680 if ($onlyactive) {
1681 $conditions[] = "ue.status = :active AND e.status = :enabled AND ue.timestart < :now1 AND " .
1682 "(ue.timeend = 0 OR ue.timeend > :now2)";
1683 // Improves db caching.
1684 $params['now1'] = round(time(), -2);
1685 $params['now2'] = $params['now1'];
1686 $params['active'] = ENROL_USER_ACTIVE;
1687 $params['enabled'] = ENROL_INSTANCE_ENABLED;
1690 if ($usersfilter) {
1691 list($usersql, $userparams) = $DB->get_in_or_equal($usersfilter, SQL_PARAMS_NAMED);
1692 $conditions[] = "ue.userid $usersql";
1693 $params = $params + $userparams;
1696 if ($uefilter) {
1697 list($uesql, $ueparams) = $DB->get_in_or_equal($uefilter, SQL_PARAMS_NAMED);
1698 $conditions[] = "ue.id $uesql";
1699 $params = $params + $ueparams;
1702 return $DB->get_records_sql($sql . ' ' . implode(' AND ', $conditions), $params);
1706 * Enrolment plugins abstract class.
1708 * All enrol plugins should be based on this class,
1709 * this is also the main source of documentation.
1711 * @copyright 2010 Petr Skoda {@link http://skodak.org}
1712 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1714 abstract class enrol_plugin {
1715 protected $config = null;
1718 * Returns name of this enrol plugin
1719 * @return string
1721 public function get_name() {
1722 // second word in class is always enrol name, sorry, no fancy plugin names with _
1723 $words = explode('_', get_class($this));
1724 return $words[1];
1728 * Returns localised name of enrol instance
1730 * @param object $instance (null is accepted too)
1731 * @return string
1733 public function get_instance_name($instance) {
1734 if (empty($instance->name)) {
1735 $enrol = $this->get_name();
1736 return get_string('pluginname', 'enrol_'.$enrol);
1737 } else {
1738 $context = context_course::instance($instance->courseid);
1739 return format_string($instance->name, true, array('context'=>$context));
1744 * Returns optional enrolment information icons.
1746 * This is used in course list for quick overview of enrolment options.
1748 * We are not using single instance parameter because sometimes
1749 * we might want to prevent icon repetition when multiple instances
1750 * of one type exist. One instance may also produce several icons.
1752 * @param array $instances all enrol instances of this type in one course
1753 * @return array of pix_icon
1755 public function get_info_icons(array $instances) {
1756 return array();
1760 * Returns optional enrolment instance description text.
1762 * This is used in detailed course information.
1765 * @param object $instance
1766 * @return string short html text
1768 public function get_description_text($instance) {
1769 return null;
1773 * Makes sure config is loaded and cached.
1774 * @return void
1776 protected function load_config() {
1777 if (!isset($this->config)) {
1778 $name = $this->get_name();
1779 $this->config = get_config("enrol_$name");
1784 * Returns plugin config value
1785 * @param string $name
1786 * @param string $default value if config does not exist yet
1787 * @return string value or default
1789 public function get_config($name, $default = NULL) {
1790 $this->load_config();
1791 return isset($this->config->$name) ? $this->config->$name : $default;
1795 * Sets plugin config value
1796 * @param string $name name of config
1797 * @param string $value string config value, null means delete
1798 * @return string value
1800 public function set_config($name, $value) {
1801 $pluginname = $this->get_name();
1802 $this->load_config();
1803 if ($value === NULL) {
1804 unset($this->config->$name);
1805 } else {
1806 $this->config->$name = $value;
1808 set_config($name, $value, "enrol_$pluginname");
1812 * Does this plugin assign protected roles are can they be manually removed?
1813 * @return bool - false means anybody may tweak roles, it does not use itemid and component when assigning roles
1815 public function roles_protected() {
1816 return true;
1820 * Does this plugin allow manual enrolments?
1822 * @param stdClass $instance course enrol instance
1823 * All plugins allowing this must implement 'enrol/xxx:enrol' capability
1825 * @return bool - true means user with 'enrol/xxx:enrol' may enrol others freely, false means nobody may add more enrolments manually
1827 public function allow_enrol(stdClass $instance) {
1828 return false;
1832 * Does this plugin allow manual unenrolment of all users?
1833 * All plugins allowing this must implement 'enrol/xxx:unenrol' capability
1835 * @param stdClass $instance course enrol instance
1836 * @return bool - true means user with 'enrol/xxx:unenrol' may unenrol others freely, false means nobody may touch user_enrolments
1838 public function allow_unenrol(stdClass $instance) {
1839 return false;
1843 * Does this plugin allow manual unenrolment of a specific user?
1844 * All plugins allowing this must implement 'enrol/xxx:unenrol' capability
1846 * This is useful especially for synchronisation plugins that
1847 * do suspend instead of full unenrolment.
1849 * @param stdClass $instance course enrol instance
1850 * @param stdClass $ue record from user_enrolments table, specifies user
1852 * @return bool - true means user with 'enrol/xxx:unenrol' may unenrol this user, false means nobody may touch this user enrolment
1854 public function allow_unenrol_user(stdClass $instance, stdClass $ue) {
1855 return $this->allow_unenrol($instance);
1859 * Does this plugin allow manual changes in user_enrolments table?
1861 * All plugins allowing this must implement 'enrol/xxx:manage' capability
1863 * @param stdClass $instance course enrol instance
1864 * @return bool - true means it is possible to change enrol period and status in user_enrolments table
1866 public function allow_manage(stdClass $instance) {
1867 return false;
1871 * Does this plugin support some way to user to self enrol?
1873 * @param stdClass $instance course enrol instance
1875 * @return bool - true means show "Enrol me in this course" link in course UI
1877 public function show_enrolme_link(stdClass $instance) {
1878 return false;
1882 * Attempt to automatically enrol current user in course without any interaction,
1883 * calling code has to make sure the plugin and instance are active.
1885 * This should return either a timestamp in the future or false.
1887 * @param stdClass $instance course enrol instance
1888 * @return bool|int false means not enrolled, integer means timeend
1890 public function try_autoenrol(stdClass $instance) {
1891 global $USER;
1893 return false;
1897 * Attempt to automatically gain temporary guest access to course,
1898 * calling code has to make sure the plugin and instance are active.
1900 * This should return either a timestamp in the future or false.
1902 * @param stdClass $instance course enrol instance
1903 * @return bool|int false means no guest access, integer means timeend
1905 public function try_guestaccess(stdClass $instance) {
1906 global $USER;
1908 return false;
1912 * Enrol user into course via enrol instance.
1914 * @param stdClass $instance
1915 * @param int $userid
1916 * @param int $roleid optional role id
1917 * @param int $timestart 0 means unknown
1918 * @param int $timeend 0 means forever
1919 * @param int $status default to ENROL_USER_ACTIVE for new enrolments, no change by default in updates
1920 * @param bool $recovergrades restore grade history
1921 * @return void
1923 public function enrol_user(stdClass $instance, $userid, $roleid = null, $timestart = 0, $timeend = 0, $status = null, $recovergrades = null) {
1924 global $DB, $USER, $CFG; // CFG necessary!!!
1926 if ($instance->courseid == SITEID) {
1927 throw new coding_exception('invalid attempt to enrol into frontpage course!');
1930 $name = $this->get_name();
1931 $courseid = $instance->courseid;
1933 if ($instance->enrol !== $name) {
1934 throw new coding_exception('invalid enrol instance!');
1936 $context = context_course::instance($instance->courseid, MUST_EXIST);
1937 if (!isset($recovergrades)) {
1938 $recovergrades = $CFG->recovergradesdefault;
1941 $inserted = false;
1942 $updated = false;
1943 if ($ue = $DB->get_record('user_enrolments', array('enrolid'=>$instance->id, 'userid'=>$userid))) {
1944 //only update if timestart or timeend or status are different.
1945 if ($ue->timestart != $timestart or $ue->timeend != $timeend or (!is_null($status) and $ue->status != $status)) {
1946 $this->update_user_enrol($instance, $userid, $status, $timestart, $timeend);
1948 } else {
1949 $ue = new stdClass();
1950 $ue->enrolid = $instance->id;
1951 $ue->status = is_null($status) ? ENROL_USER_ACTIVE : $status;
1952 $ue->userid = $userid;
1953 $ue->timestart = $timestart;
1954 $ue->timeend = $timeend;
1955 $ue->modifierid = $USER->id;
1956 $ue->timecreated = time();
1957 $ue->timemodified = $ue->timecreated;
1958 $ue->id = $DB->insert_record('user_enrolments', $ue);
1960 $inserted = true;
1963 if ($inserted) {
1964 // Trigger event.
1965 $event = \core\event\user_enrolment_created::create(
1966 array(
1967 'objectid' => $ue->id,
1968 'courseid' => $courseid,
1969 'context' => $context,
1970 'relateduserid' => $ue->userid,
1971 'other' => array('enrol' => $name)
1974 $event->trigger();
1975 // Check if course contacts cache needs to be cleared.
1976 core_course_category::user_enrolment_changed($courseid, $ue->userid,
1977 $ue->status, $ue->timestart, $ue->timeend);
1980 if ($roleid) {
1981 // this must be done after the enrolment event so that the role_assigned event is triggered afterwards
1982 if ($this->roles_protected()) {
1983 role_assign($roleid, $userid, $context->id, 'enrol_'.$name, $instance->id);
1984 } else {
1985 role_assign($roleid, $userid, $context->id);
1989 // Recover old grades if present.
1990 if ($recovergrades) {
1991 require_once("$CFG->libdir/gradelib.php");
1992 grade_recover_history_grades($userid, $courseid);
1995 // reset current user enrolment caching
1996 if ($userid == $USER->id) {
1997 if (isset($USER->enrol['enrolled'][$courseid])) {
1998 unset($USER->enrol['enrolled'][$courseid]);
2000 if (isset($USER->enrol['tempguest'][$courseid])) {
2001 unset($USER->enrol['tempguest'][$courseid]);
2002 remove_temp_course_roles($context);
2008 * Store user_enrolments changes and trigger event.
2010 * @param stdClass $instance
2011 * @param int $userid
2012 * @param int $status
2013 * @param int $timestart
2014 * @param int $timeend
2015 * @return void
2017 public function update_user_enrol(stdClass $instance, $userid, $status = NULL, $timestart = NULL, $timeend = NULL) {
2018 global $DB, $USER, $CFG;
2020 $name = $this->get_name();
2022 if ($instance->enrol !== $name) {
2023 throw new coding_exception('invalid enrol instance!');
2026 if (!$ue = $DB->get_record('user_enrolments', array('enrolid'=>$instance->id, 'userid'=>$userid))) {
2027 // weird, user not enrolled
2028 return;
2031 $modified = false;
2032 if (isset($status) and $ue->status != $status) {
2033 $ue->status = $status;
2034 $modified = true;
2036 if (isset($timestart) and $ue->timestart != $timestart) {
2037 $ue->timestart = $timestart;
2038 $modified = true;
2040 if (isset($timeend) and $ue->timeend != $timeend) {
2041 $ue->timeend = $timeend;
2042 $modified = true;
2045 if (!$modified) {
2046 // no change
2047 return;
2050 $ue->modifierid = $USER->id;
2051 $ue->timemodified = time();
2052 $DB->update_record('user_enrolments', $ue);
2054 // User enrolments have changed, so mark user as dirty.
2055 mark_user_dirty($userid);
2057 // Invalidate core_access cache for get_suspended_userids.
2058 cache_helper::invalidate_by_definition('core', 'suspended_userids', array(), array($instance->courseid));
2060 // Trigger event.
2061 $event = \core\event\user_enrolment_updated::create(
2062 array(
2063 'objectid' => $ue->id,
2064 'courseid' => $instance->courseid,
2065 'context' => context_course::instance($instance->courseid),
2066 'relateduserid' => $ue->userid,
2067 'other' => array('enrol' => $name)
2070 $event->trigger();
2072 core_course_category::user_enrolment_changed($instance->courseid, $ue->userid,
2073 $ue->status, $ue->timestart, $ue->timeend);
2077 * Unenrol user from course,
2078 * the last unenrolment removes all remaining roles.
2080 * @param stdClass $instance
2081 * @param int $userid
2082 * @return void
2084 public function unenrol_user(stdClass $instance, $userid) {
2085 global $CFG, $USER, $DB;
2086 require_once("$CFG->dirroot/group/lib.php");
2088 $name = $this->get_name();
2089 $courseid = $instance->courseid;
2091 if ($instance->enrol !== $name) {
2092 throw new coding_exception('invalid enrol instance!');
2094 $context = context_course::instance($instance->courseid, MUST_EXIST);
2096 if (!$ue = $DB->get_record('user_enrolments', array('enrolid'=>$instance->id, 'userid'=>$userid))) {
2097 // weird, user not enrolled
2098 return;
2101 // Remove all users groups linked to this enrolment instance.
2102 if ($gms = $DB->get_records('groups_members', array('userid'=>$userid, 'component'=>'enrol_'.$name, 'itemid'=>$instance->id))) {
2103 foreach ($gms as $gm) {
2104 groups_remove_member($gm->groupid, $gm->userid);
2108 role_unassign_all(array('userid'=>$userid, 'contextid'=>$context->id, 'component'=>'enrol_'.$name, 'itemid'=>$instance->id));
2109 $DB->delete_records('user_enrolments', array('id'=>$ue->id));
2111 // add extra info and trigger event
2112 $ue->courseid = $courseid;
2113 $ue->enrol = $name;
2115 $sql = "SELECT 'x'
2116 FROM {user_enrolments} ue
2117 JOIN {enrol} e ON (e.id = ue.enrolid)
2118 WHERE ue.userid = :userid AND e.courseid = :courseid";
2119 if ($DB->record_exists_sql($sql, array('userid'=>$userid, 'courseid'=>$courseid))) {
2120 $ue->lastenrol = false;
2122 } else {
2123 // the big cleanup IS necessary!
2124 require_once("$CFG->libdir/gradelib.php");
2126 // remove all remaining roles
2127 role_unassign_all(array('userid'=>$userid, 'contextid'=>$context->id), true, false);
2129 //clean up ALL invisible user data from course if this is the last enrolment - groups, grades, etc.
2130 groups_delete_group_members($courseid, $userid);
2132 grade_user_unenrol($courseid, $userid);
2134 $DB->delete_records('user_lastaccess', array('userid'=>$userid, 'courseid'=>$courseid));
2136 $ue->lastenrol = true; // means user not enrolled any more
2138 // Trigger event.
2139 $event = \core\event\user_enrolment_deleted::create(
2140 array(
2141 'courseid' => $courseid,
2142 'context' => $context,
2143 'relateduserid' => $ue->userid,
2144 'objectid' => $ue->id,
2145 'other' => array(
2146 'userenrolment' => (array)$ue,
2147 'enrol' => $name
2151 $event->trigger();
2153 // User enrolments have changed, so mark user as dirty.
2154 mark_user_dirty($userid);
2156 // Check if courrse contacts cache needs to be cleared.
2157 core_course_category::user_enrolment_changed($courseid, $ue->userid, ENROL_USER_SUSPENDED);
2159 // reset current user enrolment caching
2160 if ($userid == $USER->id) {
2161 if (isset($USER->enrol['enrolled'][$courseid])) {
2162 unset($USER->enrol['enrolled'][$courseid]);
2164 if (isset($USER->enrol['tempguest'][$courseid])) {
2165 unset($USER->enrol['tempguest'][$courseid]);
2166 remove_temp_course_roles($context);
2172 * Forces synchronisation of user enrolments.
2174 * This is important especially for external enrol plugins,
2175 * this function is called for all enabled enrol plugins
2176 * right after every user login.
2178 * @param object $user user record
2179 * @return void
2181 public function sync_user_enrolments($user) {
2182 // override if necessary
2186 * This returns false for backwards compatibility, but it is really recommended.
2188 * @since Moodle 3.1
2189 * @return boolean
2191 public function use_standard_editing_ui() {
2192 return false;
2196 * Return whether or not, given the current state, it is possible to add a new instance
2197 * of this enrolment plugin to the course.
2199 * Default implementation is just for backwards compatibility.
2201 * @param int $courseid
2202 * @return boolean
2204 public function can_add_instance($courseid) {
2205 $link = $this->get_newinstance_link($courseid);
2206 return !empty($link);
2210 * Return whether or not, given the current state, it is possible to edit an instance
2211 * of this enrolment plugin in the course. Used by the standard editing UI
2212 * to generate a link to the edit instance form if editing is allowed.
2214 * @param stdClass $instance
2215 * @return boolean
2217 public function can_edit_instance($instance) {
2218 $context = context_course::instance($instance->courseid);
2220 return has_capability('enrol/' . $instance->enrol . ':config', $context);
2224 * Returns link to page which may be used to add new instance of enrolment plugin in course.
2225 * @param int $courseid
2226 * @return moodle_url page url
2228 public function get_newinstance_link($courseid) {
2229 // override for most plugins, check if instance already exists in cases only one instance is supported
2230 return NULL;
2234 * @deprecated since Moodle 2.8 MDL-35864 - please use can_delete_instance() instead.
2236 public function instance_deleteable($instance) {
2237 throw new coding_exception('Function enrol_plugin::instance_deleteable() is deprecated, use
2238 enrol_plugin::can_delete_instance() instead');
2242 * Is it possible to delete enrol instance via standard UI?
2244 * @param stdClass $instance
2245 * @return bool
2247 public function can_delete_instance($instance) {
2248 return false;
2252 * Is it possible to hide/show enrol instance via standard UI?
2254 * @param stdClass $instance
2255 * @return bool
2257 public function can_hide_show_instance($instance) {
2258 debugging("The enrolment plugin '".$this->get_name()."' should override the function can_hide_show_instance().", DEBUG_DEVELOPER);
2259 return true;
2263 * Returns link to manual enrol UI if exists.
2264 * Does the access control tests automatically.
2266 * @param object $instance
2267 * @return moodle_url
2269 public function get_manual_enrol_link($instance) {
2270 return NULL;
2274 * Returns list of unenrol links for all enrol instances in course.
2276 * @param int $instance
2277 * @return moodle_url or NULL if self unenrolment not supported
2279 public function get_unenrolself_link($instance) {
2280 global $USER, $CFG, $DB;
2282 $name = $this->get_name();
2283 if ($instance->enrol !== $name) {
2284 throw new coding_exception('invalid enrol instance!');
2287 if ($instance->courseid == SITEID) {
2288 return NULL;
2291 if (!enrol_is_enabled($name)) {
2292 return NULL;
2295 if ($instance->status != ENROL_INSTANCE_ENABLED) {
2296 return NULL;
2299 if (!file_exists("$CFG->dirroot/enrol/$name/unenrolself.php")) {
2300 return NULL;
2303 $context = context_course::instance($instance->courseid, MUST_EXIST);
2305 if (!has_capability("enrol/$name:unenrolself", $context)) {
2306 return NULL;
2309 if (!$DB->record_exists('user_enrolments', array('enrolid'=>$instance->id, 'userid'=>$USER->id, 'status'=>ENROL_USER_ACTIVE))) {
2310 return NULL;
2313 return new moodle_url("/enrol/$name/unenrolself.php", array('enrolid'=>$instance->id));
2317 * Adds enrol instance UI to course edit form
2319 * @param object $instance enrol instance or null if does not exist yet
2320 * @param MoodleQuickForm $mform
2321 * @param object $data
2322 * @param object $context context of existing course or parent category if course does not exist
2323 * @return void
2325 public function course_edit_form($instance, MoodleQuickForm $mform, $data, $context) {
2326 // override - usually at least enable/disable switch, has to add own form header
2330 * Adds form elements to add/edit instance form.
2332 * @since Moodle 3.1
2333 * @param object $instance enrol instance or null if does not exist yet
2334 * @param MoodleQuickForm $mform
2335 * @param context $context
2336 * @return void
2338 public function edit_instance_form($instance, MoodleQuickForm $mform, $context) {
2339 // Do nothing by default.
2343 * Perform custom validation of the data used to edit the instance.
2345 * @since Moodle 3.1
2346 * @param array $data array of ("fieldname"=>value) of submitted data
2347 * @param array $files array of uploaded files "element_name"=>tmp_file_path
2348 * @param object $instance The instance data loaded from the DB.
2349 * @param context $context The context of the instance we are editing
2350 * @return array of "element_name"=>"error_description" if there are errors,
2351 * or an empty array if everything is OK.
2353 public function edit_instance_validation($data, $files, $instance, $context) {
2354 // No errors by default.
2355 debugging('enrol_plugin::edit_instance_validation() is missing. This plugin has no validation!', DEBUG_DEVELOPER);
2356 return array();
2360 * Validates course edit form data
2362 * @param object $instance enrol instance or null if does not exist yet
2363 * @param array $data
2364 * @param object $context context of existing course or parent category if course does not exist
2365 * @return array errors array
2367 public function course_edit_validation($instance, array $data, $context) {
2368 return array();
2372 * Called after updating/inserting course.
2374 * @param bool $inserted true if course just inserted
2375 * @param object $course
2376 * @param object $data form data
2377 * @return void
2379 public function course_updated($inserted, $course, $data) {
2380 if ($inserted) {
2381 if ($this->get_config('defaultenrol')) {
2382 $this->add_default_instance($course);
2388 * Add new instance of enrol plugin.
2389 * @param object $course
2390 * @param array instance fields
2391 * @return int id of new instance, null if can not be created
2393 public function add_instance($course, array $fields = NULL) {
2394 global $DB;
2396 if ($course->id == SITEID) {
2397 throw new coding_exception('Invalid request to add enrol instance to frontpage.');
2400 $instance = new stdClass();
2401 $instance->enrol = $this->get_name();
2402 $instance->status = ENROL_INSTANCE_ENABLED;
2403 $instance->courseid = $course->id;
2404 $instance->enrolstartdate = 0;
2405 $instance->enrolenddate = 0;
2406 $instance->timemodified = time();
2407 $instance->timecreated = $instance->timemodified;
2408 $instance->sortorder = $DB->get_field('enrol', 'COALESCE(MAX(sortorder), -1) + 1', array('courseid'=>$course->id));
2410 $fields = (array)$fields;
2411 unset($fields['enrol']);
2412 unset($fields['courseid']);
2413 unset($fields['sortorder']);
2414 foreach($fields as $field=>$value) {
2415 $instance->$field = $value;
2418 $instance->id = $DB->insert_record('enrol', $instance);
2420 \core\event\enrol_instance_created::create_from_record($instance)->trigger();
2422 return $instance->id;
2426 * Update instance of enrol plugin.
2428 * @since Moodle 3.1
2429 * @param stdClass $instance
2430 * @param stdClass $data modified instance fields
2431 * @return boolean
2433 public function update_instance($instance, $data) {
2434 global $DB;
2435 $properties = array('status', 'name', 'password', 'customint1', 'customint2', 'customint3',
2436 'customint4', 'customint5', 'customint6', 'customint7', 'customint8',
2437 'customchar1', 'customchar2', 'customchar3', 'customdec1', 'customdec2',
2438 'customtext1', 'customtext2', 'customtext3', 'customtext4', 'roleid',
2439 'enrolperiod', 'expirynotify', 'notifyall', 'expirythreshold',
2440 'enrolstartdate', 'enrolenddate', 'cost', 'currency');
2442 foreach ($properties as $key) {
2443 if (isset($data->$key)) {
2444 $instance->$key = $data->$key;
2447 $instance->timemodified = time();
2449 $update = $DB->update_record('enrol', $instance);
2450 if ($update) {
2451 \core\event\enrol_instance_updated::create_from_record($instance)->trigger();
2453 return $update;
2457 * Add new instance of enrol plugin with default settings,
2458 * called when adding new instance manually or when adding new course.
2460 * Not all plugins support this.
2462 * @param object $course
2463 * @return int id of new instance or null if no default supported
2465 public function add_default_instance($course) {
2466 return null;
2470 * Update instance status
2472 * Override when plugin needs to do some action when enabled or disabled.
2474 * @param stdClass $instance
2475 * @param int $newstatus ENROL_INSTANCE_ENABLED, ENROL_INSTANCE_DISABLED
2476 * @return void
2478 public function update_status($instance, $newstatus) {
2479 global $DB;
2481 $instance->status = $newstatus;
2482 $DB->update_record('enrol', $instance);
2484 $context = context_course::instance($instance->courseid);
2485 \core\event\enrol_instance_updated::create_from_record($instance)->trigger();
2487 // Invalidate all enrol caches.
2488 $context->mark_dirty();
2492 * Delete course enrol plugin instance, unenrol all users.
2493 * @param object $instance
2494 * @return void
2496 public function delete_instance($instance) {
2497 global $DB;
2499 $name = $this->get_name();
2500 if ($instance->enrol !== $name) {
2501 throw new coding_exception('invalid enrol instance!');
2504 //first unenrol all users
2505 $participants = $DB->get_recordset('user_enrolments', array('enrolid'=>$instance->id));
2506 foreach ($participants as $participant) {
2507 $this->unenrol_user($instance, $participant->userid);
2509 $participants->close();
2511 // now clean up all remainders that were not removed correctly
2512 if ($gms = $DB->get_records('groups_members', array('itemid' => $instance->id, 'component' => 'enrol_' . $name))) {
2513 foreach ($gms as $gm) {
2514 groups_remove_member($gm->groupid, $gm->userid);
2517 $DB->delete_records('role_assignments', array('itemid'=>$instance->id, 'component'=>'enrol_'.$name));
2518 $DB->delete_records('user_enrolments', array('enrolid'=>$instance->id));
2520 // finally drop the enrol row
2521 $DB->delete_records('enrol', array('id'=>$instance->id));
2523 $context = context_course::instance($instance->courseid);
2524 \core\event\enrol_instance_deleted::create_from_record($instance)->trigger();
2526 // Invalidate all enrol caches.
2527 $context->mark_dirty();
2531 * Creates course enrol form, checks if form submitted
2532 * and enrols user if necessary. It can also redirect.
2534 * @param stdClass $instance
2535 * @return string html text, usually a form in a text box
2537 public function enrol_page_hook(stdClass $instance) {
2538 return null;
2542 * Checks if user can self enrol.
2544 * @param stdClass $instance enrolment instance
2545 * @param bool $checkuserenrolment if true will check if user enrolment is inactive.
2546 * used by navigation to improve performance.
2547 * @return bool|string true if successful, else error message or false
2549 public function can_self_enrol(stdClass $instance, $checkuserenrolment = true) {
2550 return false;
2554 * Return information for enrolment instance containing list of parameters required
2555 * for enrolment, name of enrolment plugin etc.
2557 * @param stdClass $instance enrolment instance
2558 * @return array instance info.
2560 public function get_enrol_info(stdClass $instance) {
2561 return null;
2565 * Adds navigation links into course admin block.
2567 * By defaults looks for manage links only.
2569 * @param navigation_node $instancesnode
2570 * @param stdClass $instance
2571 * @return void
2573 public function add_course_navigation($instancesnode, stdClass $instance) {
2574 if ($this->use_standard_editing_ui()) {
2575 $context = context_course::instance($instance->courseid);
2576 $cap = 'enrol/' . $instance->enrol . ':config';
2577 if (has_capability($cap, $context)) {
2578 $linkparams = array('courseid' => $instance->courseid, 'id' => $instance->id, 'type' => $instance->enrol);
2579 $managelink = new moodle_url('/enrol/editinstance.php', $linkparams);
2580 $instancesnode->add($this->get_instance_name($instance), $managelink, navigation_node::TYPE_SETTING);
2586 * Returns edit icons for the page with list of instances
2587 * @param stdClass $instance
2588 * @return array
2590 public function get_action_icons(stdClass $instance) {
2591 global $OUTPUT;
2593 $icons = array();
2594 if ($this->use_standard_editing_ui()) {
2595 $linkparams = array('courseid' => $instance->courseid, 'id' => $instance->id, 'type' => $instance->enrol);
2596 $editlink = new moodle_url("/enrol/editinstance.php", $linkparams);
2597 $icons[] = $OUTPUT->action_icon($editlink, new pix_icon('t/edit', get_string('edit'), 'core',
2598 array('class' => 'iconsmall')));
2600 return $icons;
2604 * Reads version.php and determines if it is necessary
2605 * to execute the cron job now.
2606 * @return bool
2608 public function is_cron_required() {
2609 global $CFG;
2611 $name = $this->get_name();
2612 $versionfile = "$CFG->dirroot/enrol/$name/version.php";
2613 $plugin = new stdClass();
2614 include($versionfile);
2615 if (empty($plugin->cron)) {
2616 return false;
2618 $lastexecuted = $this->get_config('lastcron', 0);
2619 if ($lastexecuted + $plugin->cron < time()) {
2620 return true;
2621 } else {
2622 return false;
2627 * Called for all enabled enrol plugins that returned true from is_cron_required().
2628 * @return void
2630 public function cron() {
2634 * Called when user is about to be deleted
2635 * @param object $user
2636 * @return void
2638 public function user_delete($user) {
2639 global $DB;
2641 $sql = "SELECT e.*
2642 FROM {enrol} e
2643 JOIN {user_enrolments} ue ON (ue.enrolid = e.id)
2644 WHERE e.enrol = :name AND ue.userid = :userid";
2645 $params = array('name'=>$this->get_name(), 'userid'=>$user->id);
2647 $rs = $DB->get_recordset_sql($sql, $params);
2648 foreach($rs as $instance) {
2649 $this->unenrol_user($instance, $user->id);
2651 $rs->close();
2655 * Returns an enrol_user_button that takes the user to a page where they are able to
2656 * enrol users into the managers course through this plugin.
2658 * Optional: If the plugin supports manual enrolments it can choose to override this
2659 * otherwise it shouldn't
2661 * @param course_enrolment_manager $manager
2662 * @return enrol_user_button|false
2664 public function get_manual_enrol_button(course_enrolment_manager $manager) {
2665 return false;
2669 * Gets an array of the user enrolment actions
2671 * @param course_enrolment_manager $manager
2672 * @param stdClass $ue
2673 * @return array An array of user_enrolment_actions
2675 public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
2676 $actions = [];
2677 $context = $manager->get_context();
2678 $instance = $ue->enrolmentinstance;
2679 $params = $manager->get_moodlepage()->url->params();
2680 $params['ue'] = $ue->id;
2682 // Edit enrolment action.
2683 if ($this->allow_manage($instance) && has_capability("enrol/{$instance->enrol}:manage", $context)) {
2684 $title = get_string('editenrolment', 'enrol');
2685 $icon = new pix_icon('t/edit', $title);
2686 $url = new moodle_url('/enrol/editenrolment.php', $params);
2687 $actionparams = [
2688 'class' => 'editenrollink',
2689 'rel' => $ue->id,
2690 'data-action' => ENROL_ACTION_EDIT
2692 $actions[] = new user_enrolment_action($icon, $title, $url, $actionparams);
2695 // Unenrol action.
2696 if ($this->allow_unenrol_user($instance, $ue) && has_capability("enrol/{$instance->enrol}:unenrol", $context)) {
2697 $title = get_string('unenrol', 'enrol');
2698 $icon = new pix_icon('t/delete', $title);
2699 $url = new moodle_url('/enrol/unenroluser.php', $params);
2700 $actionparams = [
2701 'class' => 'unenrollink',
2702 'rel' => $ue->id,
2703 'data-action' => ENROL_ACTION_UNENROL
2705 $actions[] = new user_enrolment_action($icon, $title, $url, $actionparams);
2707 return $actions;
2711 * Returns true if the plugin has one or more bulk operations that can be performed on
2712 * user enrolments.
2714 * @param course_enrolment_manager $manager
2715 * @return bool
2717 public function has_bulk_operations(course_enrolment_manager $manager) {
2718 return false;
2722 * Return an array of enrol_bulk_enrolment_operation objects that define
2723 * the bulk actions that can be performed on user enrolments by the plugin.
2725 * @param course_enrolment_manager $manager
2726 * @return array
2728 public function get_bulk_operations(course_enrolment_manager $manager) {
2729 return array();
2733 * Do any enrolments need expiration processing.
2735 * Plugins that want to call this functionality must implement 'expiredaction' config setting.
2737 * @param progress_trace $trace
2738 * @param int $courseid one course, empty mean all
2739 * @return bool true if any data processed, false if not
2741 public function process_expirations(progress_trace $trace, $courseid = null) {
2742 global $DB;
2744 $name = $this->get_name();
2745 if (!enrol_is_enabled($name)) {
2746 $trace->finished();
2747 return false;
2750 $processed = false;
2751 $params = array();
2752 $coursesql = "";
2753 if ($courseid) {
2754 $coursesql = "AND e.courseid = :courseid";
2757 // Deal with expired accounts.
2758 $action = $this->get_config('expiredaction', ENROL_EXT_REMOVED_KEEP);
2760 if ($action == ENROL_EXT_REMOVED_UNENROL) {
2761 $instances = array();
2762 $sql = "SELECT ue.*, e.courseid, c.id AS contextid
2763 FROM {user_enrolments} ue
2764 JOIN {enrol} e ON (e.id = ue.enrolid AND e.enrol = :enrol)
2765 JOIN {context} c ON (c.instanceid = e.courseid AND c.contextlevel = :courselevel)
2766 WHERE ue.timeend > 0 AND ue.timeend < :now $coursesql";
2767 $params = array('now'=>time(), 'courselevel'=>CONTEXT_COURSE, 'enrol'=>$name, 'courseid'=>$courseid);
2769 $rs = $DB->get_recordset_sql($sql, $params);
2770 foreach ($rs as $ue) {
2771 if (!$processed) {
2772 $trace->output("Starting processing of enrol_$name expirations...");
2773 $processed = true;
2775 if (empty($instances[$ue->enrolid])) {
2776 $instances[$ue->enrolid] = $DB->get_record('enrol', array('id'=>$ue->enrolid));
2778 $instance = $instances[$ue->enrolid];
2779 if (!$this->roles_protected()) {
2780 // Let's just guess what extra roles are supposed to be removed.
2781 if ($instance->roleid) {
2782 role_unassign($instance->roleid, $ue->userid, $ue->contextid);
2785 // The unenrol cleans up all subcontexts if this is the only course enrolment for this user.
2786 $this->unenrol_user($instance, $ue->userid);
2787 $trace->output("Unenrolling expired user $ue->userid from course $instance->courseid", 1);
2789 $rs->close();
2790 unset($instances);
2792 } else if ($action == ENROL_EXT_REMOVED_SUSPENDNOROLES or $action == ENROL_EXT_REMOVED_SUSPEND) {
2793 $instances = array();
2794 $sql = "SELECT ue.*, e.courseid, c.id AS contextid
2795 FROM {user_enrolments} ue
2796 JOIN {enrol} e ON (e.id = ue.enrolid AND e.enrol = :enrol)
2797 JOIN {context} c ON (c.instanceid = e.courseid AND c.contextlevel = :courselevel)
2798 WHERE ue.timeend > 0 AND ue.timeend < :now
2799 AND ue.status = :useractive $coursesql";
2800 $params = array('now'=>time(), 'courselevel'=>CONTEXT_COURSE, 'useractive'=>ENROL_USER_ACTIVE, 'enrol'=>$name, 'courseid'=>$courseid);
2801 $rs = $DB->get_recordset_sql($sql, $params);
2802 foreach ($rs as $ue) {
2803 if (!$processed) {
2804 $trace->output("Starting processing of enrol_$name expirations...");
2805 $processed = true;
2807 if (empty($instances[$ue->enrolid])) {
2808 $instances[$ue->enrolid] = $DB->get_record('enrol', array('id'=>$ue->enrolid));
2810 $instance = $instances[$ue->enrolid];
2812 if ($action == ENROL_EXT_REMOVED_SUSPENDNOROLES) {
2813 if (!$this->roles_protected()) {
2814 // Let's just guess what roles should be removed.
2815 $count = $DB->count_records('role_assignments', array('userid'=>$ue->userid, 'contextid'=>$ue->contextid));
2816 if ($count == 1) {
2817 role_unassign_all(array('userid'=>$ue->userid, 'contextid'=>$ue->contextid, 'component'=>'', 'itemid'=>0));
2819 } else if ($count > 1 and $instance->roleid) {
2820 role_unassign($instance->roleid, $ue->userid, $ue->contextid, '', 0);
2823 // In any case remove all roles that belong to this instance and user.
2824 role_unassign_all(array('userid'=>$ue->userid, 'contextid'=>$ue->contextid, 'component'=>'enrol_'.$name, 'itemid'=>$instance->id), true);
2825 // Final cleanup of subcontexts if there are no more course roles.
2826 if (0 == $DB->count_records('role_assignments', array('userid'=>$ue->userid, 'contextid'=>$ue->contextid))) {
2827 role_unassign_all(array('userid'=>$ue->userid, 'contextid'=>$ue->contextid, 'component'=>'', 'itemid'=>0), true);
2831 $this->update_user_enrol($instance, $ue->userid, ENROL_USER_SUSPENDED);
2832 $trace->output("Suspending expired user $ue->userid in course $instance->courseid", 1);
2834 $rs->close();
2835 unset($instances);
2837 } else {
2838 // ENROL_EXT_REMOVED_KEEP means no changes.
2841 if ($processed) {
2842 $trace->output("...finished processing of enrol_$name expirations");
2843 } else {
2844 $trace->output("No expired enrol_$name enrolments detected");
2846 $trace->finished();
2848 return $processed;
2852 * Send expiry notifications.
2854 * Plugin that wants to have expiry notification MUST implement following:
2855 * - expirynotifyhour plugin setting,
2856 * - configuration options in instance edit form (expirynotify, notifyall and expirythreshold),
2857 * - notification strings (expirymessageenrollersubject, expirymessageenrollerbody,
2858 * expirymessageenrolledsubject and expirymessageenrolledbody),
2859 * - expiry_notification provider in db/messages.php,
2860 * - upgrade code that sets default thresholds for existing courses (should be 1 day),
2861 * - something that calls this method, such as cron.
2863 * @param progress_trace $trace (accepts bool for backwards compatibility only)
2865 public function send_expiry_notifications($trace) {
2866 global $DB, $CFG;
2868 $name = $this->get_name();
2869 if (!enrol_is_enabled($name)) {
2870 $trace->finished();
2871 return;
2874 // Unfortunately this may take a long time, it should not be interrupted,
2875 // otherwise users get duplicate notification.
2877 core_php_time_limit::raise();
2878 raise_memory_limit(MEMORY_HUGE);
2881 $expirynotifylast = $this->get_config('expirynotifylast', 0);
2882 $expirynotifyhour = $this->get_config('expirynotifyhour');
2883 if (is_null($expirynotifyhour)) {
2884 debugging("send_expiry_notifications() in $name enrolment plugin needs expirynotifyhour setting");
2885 $trace->finished();
2886 return;
2889 if (!($trace instanceof progress_trace)) {
2890 $trace = $trace ? new text_progress_trace() : new null_progress_trace();
2891 debugging('enrol_plugin::send_expiry_notifications() now expects progress_trace instance as parameter!', DEBUG_DEVELOPER);
2894 $timenow = time();
2895 $notifytime = usergetmidnight($timenow, $CFG->timezone) + ($expirynotifyhour * 3600);
2897 if ($expirynotifylast > $notifytime) {
2898 $trace->output($name.' enrolment expiry notifications were already sent today at '.userdate($expirynotifylast, '', $CFG->timezone).'.');
2899 $trace->finished();
2900 return;
2902 } else if ($timenow < $notifytime) {
2903 $trace->output($name.' enrolment expiry notifications will be sent at '.userdate($notifytime, '', $CFG->timezone).'.');
2904 $trace->finished();
2905 return;
2908 $trace->output('Processing '.$name.' enrolment expiration notifications...');
2910 // Notify users responsible for enrolment once every day.
2911 $sql = "SELECT ue.*, e.expirynotify, e.notifyall, e.expirythreshold, e.courseid, c.fullname
2912 FROM {user_enrolments} ue
2913 JOIN {enrol} e ON (e.id = ue.enrolid AND e.enrol = :name AND e.expirynotify > 0 AND e.status = :enabled)
2914 JOIN {course} c ON (c.id = e.courseid)
2915 JOIN {user} u ON (u.id = ue.userid AND u.deleted = 0 AND u.suspended = 0)
2916 WHERE ue.status = :active AND ue.timeend > 0 AND ue.timeend > :now1 AND ue.timeend < (e.expirythreshold + :now2)
2917 ORDER BY ue.enrolid ASC, u.lastname ASC, u.firstname ASC, u.id ASC";
2918 $params = array('enabled'=>ENROL_INSTANCE_ENABLED, 'active'=>ENROL_USER_ACTIVE, 'now1'=>$timenow, 'now2'=>$timenow, 'name'=>$name);
2920 $rs = $DB->get_recordset_sql($sql, $params);
2922 $lastenrollid = 0;
2923 $users = array();
2925 foreach($rs as $ue) {
2926 if ($lastenrollid and $lastenrollid != $ue->enrolid) {
2927 $this->notify_expiry_enroller($lastenrollid, $users, $trace);
2928 $users = array();
2930 $lastenrollid = $ue->enrolid;
2932 $enroller = $this->get_enroller($ue->enrolid);
2933 $context = context_course::instance($ue->courseid);
2935 $user = $DB->get_record('user', array('id'=>$ue->userid));
2937 $users[] = array('fullname'=>fullname($user, has_capability('moodle/site:viewfullnames', $context, $enroller)), 'timeend'=>$ue->timeend);
2939 if (!$ue->notifyall) {
2940 continue;
2943 if ($ue->timeend - $ue->expirythreshold + 86400 < $timenow) {
2944 // Notify enrolled users only once at the start of the threshold.
2945 $trace->output("user $ue->userid was already notified that enrolment in course $ue->courseid expires on ".userdate($ue->timeend, '', $CFG->timezone), 1);
2946 continue;
2949 $this->notify_expiry_enrolled($user, $ue, $trace);
2951 $rs->close();
2953 if ($lastenrollid and $users) {
2954 $this->notify_expiry_enroller($lastenrollid, $users, $trace);
2957 $trace->output('...notification processing finished.');
2958 $trace->finished();
2960 $this->set_config('expirynotifylast', $timenow);
2964 * Returns the user who is responsible for enrolments for given instance.
2966 * Override if plugin knows anybody better than admin.
2968 * @param int $instanceid enrolment instance id
2969 * @return stdClass user record
2971 protected function get_enroller($instanceid) {
2972 return get_admin();
2976 * Notify user about incoming expiration of their enrolment,
2977 * it is called only if notification of enrolled users (aka students) is enabled in course.
2979 * This is executed only once for each expiring enrolment right
2980 * at the start of the expiration threshold.
2982 * @param stdClass $user
2983 * @param stdClass $ue
2984 * @param progress_trace $trace
2986 protected function notify_expiry_enrolled($user, $ue, progress_trace $trace) {
2987 global $CFG;
2989 $name = $this->get_name();
2991 $oldforcelang = force_current_language($user->lang);
2993 $enroller = $this->get_enroller($ue->enrolid);
2994 $context = context_course::instance($ue->courseid);
2996 $a = new stdClass();
2997 $a->course = format_string($ue->fullname, true, array('context'=>$context));
2998 $a->user = fullname($user, true);
2999 $a->timeend = userdate($ue->timeend, '', $user->timezone);
3000 $a->enroller = fullname($enroller, has_capability('moodle/site:viewfullnames', $context, $user));
3002 $subject = get_string('expirymessageenrolledsubject', 'enrol_'.$name, $a);
3003 $body = get_string('expirymessageenrolledbody', 'enrol_'.$name, $a);
3005 $message = new \core\message\message();
3006 $message->courseid = $ue->courseid;
3007 $message->notification = 1;
3008 $message->component = 'enrol_'.$name;
3009 $message->name = 'expiry_notification';
3010 $message->userfrom = $enroller;
3011 $message->userto = $user;
3012 $message->subject = $subject;
3013 $message->fullmessage = $body;
3014 $message->fullmessageformat = FORMAT_MARKDOWN;
3015 $message->fullmessagehtml = markdown_to_html($body);
3016 $message->smallmessage = $subject;
3017 $message->contexturlname = $a->course;
3018 $message->contexturl = (string)new moodle_url('/course/view.php', array('id'=>$ue->courseid));
3020 if (message_send($message)) {
3021 $trace->output("notifying user $ue->userid that enrolment in course $ue->courseid expires on ".userdate($ue->timeend, '', $CFG->timezone), 1);
3022 } else {
3023 $trace->output("error notifying user $ue->userid that enrolment in course $ue->courseid expires on ".userdate($ue->timeend, '', $CFG->timezone), 1);
3026 force_current_language($oldforcelang);
3030 * Notify person responsible for enrolments that some user enrolments will be expired soon,
3031 * it is called only if notification of enrollers (aka teachers) is enabled in course.
3033 * This is called repeatedly every day for each course if there are any pending expiration
3034 * in the expiration threshold.
3036 * @param int $eid
3037 * @param array $users
3038 * @param progress_trace $trace
3040 protected function notify_expiry_enroller($eid, $users, progress_trace $trace) {
3041 global $DB;
3043 $name = $this->get_name();
3045 $instance = $DB->get_record('enrol', array('id'=>$eid, 'enrol'=>$name));
3046 $context = context_course::instance($instance->courseid);
3047 $course = $DB->get_record('course', array('id'=>$instance->courseid));
3049 $enroller = $this->get_enroller($instance->id);
3050 $admin = get_admin();
3052 $oldforcelang = force_current_language($enroller->lang);
3054 foreach($users as $key=>$info) {
3055 $users[$key] = '* '.$info['fullname'].' - '.userdate($info['timeend'], '', $enroller->timezone);
3058 $a = new stdClass();
3059 $a->course = format_string($course->fullname, true, array('context'=>$context));
3060 $a->threshold = get_string('numdays', '', $instance->expirythreshold / (60*60*24));
3061 $a->users = implode("\n", $users);
3062 $a->extendurl = (string)new moodle_url('/user/index.php', array('id'=>$instance->courseid));
3064 $subject = get_string('expirymessageenrollersubject', 'enrol_'.$name, $a);
3065 $body = get_string('expirymessageenrollerbody', 'enrol_'.$name, $a);
3067 $message = new \core\message\message();
3068 $message->courseid = $course->id;
3069 $message->notification = 1;
3070 $message->component = 'enrol_'.$name;
3071 $message->name = 'expiry_notification';
3072 $message->userfrom = $admin;
3073 $message->userto = $enroller;
3074 $message->subject = $subject;
3075 $message->fullmessage = $body;
3076 $message->fullmessageformat = FORMAT_MARKDOWN;
3077 $message->fullmessagehtml = markdown_to_html($body);
3078 $message->smallmessage = $subject;
3079 $message->contexturlname = $a->course;
3080 $message->contexturl = $a->extendurl;
3082 if (message_send($message)) {
3083 $trace->output("notifying user $enroller->id about all expiring $name enrolments in course $instance->courseid", 1);
3084 } else {
3085 $trace->output("error notifying user $enroller->id about all expiring $name enrolments in course $instance->courseid", 1);
3088 force_current_language($oldforcelang);
3092 * Backup execution step hook to annotate custom fields.
3094 * @param backup_enrolments_execution_step $step
3095 * @param stdClass $enrol
3097 public function backup_annotate_custom_fields(backup_enrolments_execution_step $step, stdClass $enrol) {
3098 // Override as necessary to annotate custom fields in the enrol table.
3102 * Automatic enrol sync executed during restore.
3103 * Useful for automatic sync by course->idnumber or course category.
3104 * @param stdClass $course course record
3106 public function restore_sync_course($course) {
3107 // Override if necessary.
3111 * Restore instance and map settings.
3113 * @param restore_enrolments_structure_step $step
3114 * @param stdClass $data
3115 * @param stdClass $course
3116 * @param int $oldid
3118 public function restore_instance(restore_enrolments_structure_step $step, stdClass $data, $course, $oldid) {
3119 // Do not call this from overridden methods, restore and set new id there.
3120 $step->set_mapping('enrol', $oldid, 0);
3124 * Restore user enrolment.
3126 * @param restore_enrolments_structure_step $step
3127 * @param stdClass $data
3128 * @param stdClass $instance
3129 * @param int $oldinstancestatus
3130 * @param int $userid
3132 public function restore_user_enrolment(restore_enrolments_structure_step $step, $data, $instance, $userid, $oldinstancestatus) {
3133 // Override as necessary if plugin supports restore of enrolments.
3137 * Restore role assignment.
3139 * @param stdClass $instance
3140 * @param int $roleid
3141 * @param int $userid
3142 * @param int $contextid
3144 public function restore_role_assignment($instance, $roleid, $userid, $contextid) {
3145 // No role assignment by default, override if necessary.
3149 * Restore user group membership.
3150 * @param stdClass $instance
3151 * @param int $groupid
3152 * @param int $userid
3154 public function restore_group_member($instance, $groupid, $userid) {
3155 // Implement if you want to restore protected group memberships,
3156 // usually this is not necessary because plugins should be able to recreate the memberships automatically.
3160 * Returns defaults for new instances.
3161 * @since Moodle 3.1
3162 * @return array
3164 public function get_instance_defaults() {
3165 return array();
3169 * Validate a list of parameter names and types.
3170 * @since Moodle 3.1
3172 * @param array $data array of ("fieldname"=>value) of submitted data
3173 * @param array $rules array of ("fieldname"=>PARAM_X types - or "fieldname"=>array( list of valid options )
3174 * @return array of "element_name"=>"error_description" if there are errors,
3175 * or an empty array if everything is OK.
3177 public function validate_param_types($data, $rules) {
3178 $errors = array();
3179 $invalidstr = get_string('invaliddata', 'error');
3180 foreach ($rules as $fieldname => $rule) {
3181 if (is_array($rule)) {
3182 if (!in_array($data[$fieldname], $rule)) {
3183 $errors[$fieldname] = $invalidstr;
3185 } else {
3186 if ($data[$fieldname] != clean_param($data[$fieldname], $rule)) {
3187 $errors[$fieldname] = $invalidstr;
3191 return $errors;