2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * This file contains the course_enrolment_manager class which is used to interface
19 * with the functions that exist in enrollib.php in relation to a single course.
22 * @copyright 2010 Sam Hemelryk
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 defined('MOODLE_INTERNAL') ||
die();
31 * This class provides a targeted tied together means of interfacing the enrolment
32 * tasks together with a course.
34 * It is provided as a convenience more than anything else.
36 * @copyright 2010 Sam Hemelryk
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39 class course_enrolment_manager
{
47 * The course we are managing enrolments for
50 protected $course = null;
52 * Limits the focus of the manager to one enrolment plugin instance
55 protected $instancefilter = null;
57 * Limits the focus of the manager to users with specified role
60 protected $rolefilter = 0;
62 * Limits the focus of the manager to users who match search string
65 protected $searchfilter = '';
67 * Limits the focus of the manager to users in specified group
70 protected $groupfilter = 0;
72 * Limits the focus of the manager to users who match status active/inactive
75 protected $statusfilter = -1;
78 * The total number of users enrolled in the course
79 * Populated by course_enrolment_manager::get_total_users
82 protected $totalusers = null;
84 * An array of users currently enrolled in the course
85 * Populated by course_enrolment_manager::get_users
88 protected $users = array();
91 * An array of users who have roles within this course but who have not
92 * been enrolled in the course
95 protected $otherusers = array();
98 * The total number of users who hold a role within the course but who
102 protected $totalotherusers = null;
105 * The current moodle_page object
108 protected $moodlepage = null;
111 * These variables are used to cache the information this class uses
112 * please never use these directly instead use their get_ counterparts.
116 private $_instancessql = null;
117 private $_instances = null;
118 private $_inames = null;
119 private $_plugins = null;
120 private $_allplugins = null;
121 private $_roles = null;
122 private $_visibleroles = null;
123 private $_assignableroles = null;
124 private $_assignablerolesothers = null;
125 private $_groups = null;
129 * Constructs the course enrolment manager
131 * @param moodle_page $moodlepage
132 * @param stdClass $course
133 * @param string $instancefilter
134 * @param int $rolefilter If non-zero, filters to users with specified role
135 * @param string $searchfilter If non-blank, filters to users with search text
136 * @param int $groupfilter if non-zero, filter users with specified group
137 * @param int $statusfilter if not -1, filter users with active/inactive enrollment.
139 public function __construct(moodle_page
$moodlepage, $course, $instancefilter = null,
140 $rolefilter = 0, $searchfilter = '', $groupfilter = 0, $statusfilter = -1) {
141 $this->moodlepage
= $moodlepage;
142 $this->context
= context_course
::instance($course->id
);
143 $this->course
= $course;
144 $this->instancefilter
= $instancefilter;
145 $this->rolefilter
= $rolefilter;
146 $this->searchfilter
= $searchfilter;
147 $this->groupfilter
= $groupfilter;
148 $this->statusfilter
= $statusfilter;
152 * Returns the current moodle page
153 * @return moodle_page
155 public function get_moodlepage() {
156 return $this->moodlepage
;
160 * Returns the total number of enrolled users in the course.
162 * If a filter was specificed this will be the total number of users enrolled
163 * in this course by means of that instance.
165 * @global moodle_database $DB
168 public function get_total_users() {
170 if ($this->totalusers
=== null) {
171 list($instancessql, $params, $filter) = $this->get_instance_sql();
172 list($filtersql, $moreparams) = $this->get_filter_sql();
173 $params +
= $moreparams;
174 $sqltotal = "SELECT COUNT(DISTINCT u.id)
176 JOIN {user_enrolments} ue ON (ue.userid = u.id AND ue.enrolid $instancessql)
177 JOIN {enrol} e ON (e.id = ue.enrolid)";
178 if ($this->groupfilter
) {
179 $sqltotal .= " LEFT JOIN ({groups_members} gm JOIN {groups} g ON (g.id = gm.groupid))
180 ON (u.id = gm.userid AND g.courseid = e.courseid)";
182 $sqltotal .= "WHERE $filtersql";
183 $this->totalusers
= (int)$DB->count_records_sql($sqltotal, $params);
185 return $this->totalusers
;
189 * Returns the total number of enrolled users in the course.
191 * If a filter was specificed this will be the total number of users enrolled
192 * in this course by means of that instance.
194 * @global moodle_database $DB
197 public function get_total_other_users() {
199 if ($this->totalotherusers
=== null) {
200 list($ctxcondition, $params) = $DB->get_in_or_equal($this->context
->get_parent_context_ids(true), SQL_PARAMS_NAMED
, 'ctx');
201 $params['courseid'] = $this->course
->id
;
202 $sql = "SELECT COUNT(DISTINCT u.id)
203 FROM {role_assignments} ra
204 JOIN {user} u ON u.id = ra.userid
205 JOIN {context} ctx ON ra.contextid = ctx.id
207 SELECT ue.id, ue.userid
208 FROM {user_enrolments} ue
209 LEFT JOIN {enrol} e ON e.id=ue.enrolid
210 WHERE e.courseid = :courseid
211 ) ue ON ue.userid=u.id
212 WHERE ctx.id $ctxcondition AND
214 $this->totalotherusers
= (int)$DB->count_records_sql($sql, $params);
216 return $this->totalotherusers
;
220 * Gets all of the users enrolled in this course.
222 * If a filter was specified this will be the users who were enrolled
223 * in this course by means of that instance. If role or search filters were
224 * specified then these will also be applied.
226 * @global moodle_database $DB
227 * @param string $sort
228 * @param string $direction ASC or DESC
229 * @param int $page First page should be 0
230 * @param int $perpage Defaults to 25
233 public function get_users($sort, $direction='ASC', $page=0, $perpage=25) {
235 if ($direction !== 'ASC') {
238 $key = md5("$sort-$direction-$page-$perpage");
239 if (!array_key_exists($key, $this->users
)) {
240 list($instancessql, $params, $filter) = $this->get_instance_sql();
241 list($filtersql, $moreparams) = $this->get_filter_sql();
242 $params +
= $moreparams;
243 $userfields = fields
::for_identity($this->get_context())->with_userpic()->excluding('lastaccess');
244 ['selects' => $fieldselect, 'joins' => $fieldjoin, 'params' => $fieldjoinparams] =
245 (array)$userfields->get_sql('u', true, '', '', false);
246 $params +
= $fieldjoinparams;
247 $sql = "SELECT DISTINCT $fieldselect, COALESCE(ul.timeaccess, 0) AS lastcourseaccess
249 JOIN {user_enrolments} ue ON (ue.userid = u.id AND ue.enrolid $instancessql)
250 JOIN {enrol} e ON (e.id = ue.enrolid)
252 LEFT JOIN {user_lastaccess} ul ON (ul.courseid = e.courseid AND ul.userid = u.id)";
253 if ($this->groupfilter
) {
254 $sql .= " LEFT JOIN ({groups_members} gm JOIN {groups} g ON (g.id = gm.groupid))
255 ON (u.id = gm.userid AND g.courseid = e.courseid)";
257 $sql .= "WHERE $filtersql
258 ORDER BY $sort $direction";
259 $this->users
[$key] = $DB->get_records_sql($sql, $params, $page*$perpage, $perpage);
261 return $this->users
[$key];
265 * Obtains WHERE clause to filter results by defined search and role filter
266 * (instance filter is handled separately in JOIN clause, see
269 * @return array Two-element array with SQL and params for WHERE clause
271 protected function get_filter_sql() {
275 // TODO Does not support custom user profile fields (MDL-70456).
276 $extrafields = fields
::get_identity_fields($this->get_context(), false);
277 list($sql, $params) = users_search_sql($this->searchfilter
, 'u', USER_SEARCH_CONTAINS
, $extrafields);
280 if ($this->rolefilter
) {
282 $contextids = $this->context
->get_parent_context_ids();
283 $contextids[] = $this->context
->id
;
284 list($contextsql, $contextparams) = $DB->get_in_or_equal($contextids, SQL_PARAMS_NAMED
);
285 $params +
= $contextparams;
287 // Role check condition.
288 $sql .= " AND (SELECT COUNT(1) FROM {role_assignments} ra WHERE ra.userid = u.id " .
289 "AND ra.roleid = :roleid AND ra.contextid $contextsql) > 0";
290 $params['roleid'] = $this->rolefilter
;
294 if ($this->groupfilter
) {
295 if ($this->groupfilter
< 0) {
296 // Show users who are not in any group.
297 $sql .= " AND gm.groupid IS NULL";
299 $sql .= " AND gm.groupid = :groupid";
300 $params['groupid'] = $this->groupfilter
;
305 if ($this->statusfilter
=== ENROL_USER_ACTIVE
) {
306 $sql .= " AND ue.status = :active AND e.status = :enabled AND ue.timestart < :now1
307 AND (ue.timeend = 0 OR ue.timeend > :now2)";
308 $now = round(time(), -2); // rounding helps caching in DB
309 $params +
= array('enabled' => ENROL_INSTANCE_ENABLED
,
310 'active' => ENROL_USER_ACTIVE
,
313 } else if ($this->statusfilter
=== ENROL_USER_SUSPENDED
) {
314 $sql .= " AND (ue.status = :inactive OR e.status = :disabled OR ue.timestart > :now1
315 OR (ue.timeend <> 0 AND ue.timeend < :now2))";
316 $now = round(time(), -2); // rounding helps caching in DB
317 $params +
= array('disabled' => ENROL_INSTANCE_DISABLED
,
318 'inactive' => ENROL_USER_SUSPENDED
,
323 return array($sql, $params);
327 * Gets and array of other users.
329 * Other users are users who have been assigned roles or inherited roles
330 * within this course but who have not been enrolled in the course
332 * @global moodle_database $DB
333 * @param string $sort
334 * @param string $direction
336 * @param int $perpage
339 public function get_other_users($sort, $direction='ASC', $page=0, $perpage=25) {
341 if ($direction !== 'ASC') {
344 $key = md5("$sort-$direction-$page-$perpage");
345 if (!array_key_exists($key, $this->otherusers
)) {
346 list($ctxcondition, $params) = $DB->get_in_or_equal($this->context
->get_parent_context_ids(true), SQL_PARAMS_NAMED
, 'ctx');
347 $params['courseid'] = $this->course
->id
;
348 $params['cid'] = $this->course
->id
;
349 $userfields = fields
::for_identity($this->get_context())->with_userpic();
350 ['selects' => $fieldselect, 'joins' => $fieldjoin, 'params' => $fieldjoinparams] =
351 (array)$userfields->get_sql('u', true);
352 $params +
= $fieldjoinparams;
353 $sql = "SELECT ra.id as raid, ra.contextid, ra.component, ctx.contextlevel, ra.roleid,
354 coalesce(u.lastaccess,0) AS lastaccess
356 FROM {role_assignments} ra
357 JOIN {user} u ON u.id = ra.userid
358 JOIN {context} ctx ON ra.contextid = ctx.id
361 SELECT ue.id, ue.userid
362 FROM {user_enrolments} ue
363 JOIN {enrol} e ON e.id = ue.enrolid
364 WHERE e.courseid = :courseid
365 ) ue ON ue.userid=u.id
366 WHERE ctx.id $ctxcondition AND
368 ORDER BY $sort $direction, ctx.depth DESC";
369 $this->otherusers
[$key] = $DB->get_records_sql($sql, $params, $page*$perpage, $perpage);
371 return $this->otherusers
[$key];
375 * Helper method used by {@link get_potential_users()} and {@link search_other_users()}.
377 * @param string $search the search term, if any.
378 * @param bool $searchanywhere Can the search term be anywhere, or must it be at the start.
379 * @return array with three elements:
380 * string list of fields to SELECT,
381 * string possible database joins for user fields
382 * string contents of SQL WHERE clause,
383 * array query params. Note that the SQL snippets use named parameters.
385 protected function get_basic_search_conditions($search, $searchanywhere) {
388 // Get custom user field SQL used for querying all the fields we need (identity, name, and
390 $userfields = fields
::for_identity($this->context
)->with_name()->with_userpic()
391 ->excluding('username', 'lastaccess', 'maildisplay');
392 ['selects' => $fieldselects, 'joins' => $fieldjoins, 'params' => $params, 'mappings' => $mappings] =
393 (array)$userfields->get_sql('u', true, '', '', false);
395 // Searchable fields are only the identity and name ones (not userpic, and without exclusions).
396 $searchablefields = fields
::for_identity($this->context
)->with_name();
397 $searchable = array_fill_keys($searchablefields->get_required_fields(), true);
398 if (array_key_exists('username', $searchable)) {
399 // Add the username into the mappings list from the other query, because it was excluded.
400 $mappings['username'] = 'u.username';
403 // Add some additional sensible conditions
404 $tests = array("u.id <> :guestid", 'u.deleted = 0', 'u.confirmed = 1');
405 $params['guestid'] = $CFG->siteguest
;
406 if (!empty($search)) {
407 // Include identity and name fields as conditions.
408 foreach ($mappings as $fieldname => $fieldsql) {
409 if (array_key_exists($fieldname, $searchable)) {
410 $conditions[] = $fieldsql;
413 $conditions[] = $DB->sql_fullname('u.firstname', 'u.lastname');
414 if ($searchanywhere) {
415 $searchparam = '%' . $search . '%';
417 $searchparam = $search . '%';
420 foreach ($conditions as $key => $condition) {
421 $conditions[$key] = $DB->sql_like($condition, ":con{$i}00", false);
422 $params["con{$i}00"] = $searchparam;
425 $tests[] = '(' . implode(' OR ', $conditions) . ')';
427 $wherecondition = implode(' AND ', $tests);
429 $selects = $fieldselects . ', u.username, u.lastaccess, u.maildisplay';
430 return [$selects, $fieldjoins, $params, $wherecondition];
434 * Helper method used by {@link get_potential_users()} and {@link search_other_users()}.
436 * @param string $search the search string, if any.
437 * @param string $fields the first bit of the SQL when returning some users.
438 * @param string $countfields fhe first bit of the SQL when counting the users.
439 * @param string $sql the bulk of the SQL statement.
440 * @param array $params query parameters.
441 * @param int $page which page number of the results to show.
442 * @param int $perpage number of users per page.
443 * @param int $addedenrollment number of users added to enrollment.
444 * @param bool $returnexactcount Return the exact total users using count_record or not.
445 * @return array with two or three elements:
446 * int totalusers Number users matching the search. (This element only exist if $returnexactcount was set to true)
447 * array users List of user objects returned by the query.
448 * boolean moreusers True if there are still more users, otherwise is False.
449 * @throws dml_exception
451 protected function execute_search_queries($search, $fields, $countfields, $sql, array $params, $page, $perpage,
452 $addedenrollment = 0, $returnexactcount = false) {
455 list($sort, $sortparams) = users_order_by_sql('u', $search, $this->get_context());
456 $order = ' ORDER BY ' . $sort;
462 $availableusers = $DB->get_records_sql($fields . $sql . $order,
463 array_merge($params, $sortparams), ($page * $perpage) - $addedenrollment, $perpage +
1);
464 if ($availableusers) {
465 $totalusers = count($availableusers);
466 $moreusers = $totalusers > $perpage;
469 // We need to discard the last record.
470 array_pop($availableusers);
473 if ($returnexactcount && $moreusers) {
474 // There is more data. We need to do the exact count.
475 $totalusers = $DB->count_records_sql($countfields . $sql, $params);
479 $results['users'] = $availableusers;
480 $results['moreusers'] = $moreusers;
482 if ($returnexactcount) {
483 // Include totalusers in result if $returnexactcount flag is true.
484 $results['totalusers'] = $totalusers;
491 * Gets an array of the users that can be enrolled in this course.
493 * @global moodle_database $DB
494 * @param int $enrolid
495 * @param string $search
496 * @param bool $searchanywhere
497 * @param int $page Defaults to 0
498 * @param int $perpage Defaults to 25
499 * @param int $addedenrollment Defaults to 0
500 * @param bool $returnexactcount Return the exact total users using count_record or not.
501 * @return array with two or three elements:
502 * int totalusers Number users matching the search. (This element only exist if $returnexactcount was set to true)
503 * array users List of user objects returned by the query.
504 * boolean moreusers True if there are still more users, otherwise is False.
505 * @throws dml_exception
507 public function get_potential_users($enrolid, $search = '', $searchanywhere = false, $page = 0, $perpage = 25,
508 $addedenrollment = 0, $returnexactcount = false) {
511 [$ufields, $joins, $params, $wherecondition] = $this->get_basic_search_conditions($search, $searchanywhere);
513 $fields = 'SELECT '.$ufields;
514 $countfields = 'SELECT COUNT(1)';
515 $sql = " FROM {user} u
517 LEFT JOIN {user_enrolments} ue ON (ue.userid = u.id AND ue.enrolid = :enrolid)
518 WHERE $wherecondition
520 $params['enrolid'] = $enrolid;
522 return $this->execute_search_queries($search, $fields, $countfields, $sql, $params, $page, $perpage, $addedenrollment,
527 * Searches other users and returns paginated results
529 * @global moodle_database $DB
530 * @param string $search
531 * @param bool $searchanywhere
532 * @param int $page Starting at 0
533 * @param int $perpage
534 * @param bool $returnexactcount Return the exact total users using count_record or not.
535 * @return array with two or three elements:
536 * int totalusers Number users matching the search. (This element only exist if $returnexactcount was set to true)
537 * array users List of user objects returned by the query.
538 * boolean moreusers True if there are still more users, otherwise is False.
539 * @throws dml_exception
541 public function search_other_users($search = '', $searchanywhere = false, $page = 0, $perpage = 25, $returnexactcount = false) {
544 [$ufields, $joins, $params, $wherecondition] = $this->get_basic_search_conditions($search, $searchanywhere);
546 $fields = 'SELECT ' . $ufields;
547 $countfields = 'SELECT COUNT(u.id)';
548 $sql = " FROM {user} u
550 LEFT JOIN {role_assignments} ra ON (ra.userid = u.id AND ra.contextid = :contextid)
551 WHERE $wherecondition
553 $params['contextid'] = $this->context
->id
;
555 return $this->execute_search_queries($search, $fields, $countfields, $sql, $params, $page, $perpage, 0, $returnexactcount);
559 * Searches through the enrolled users in this course.
561 * @param string $search The search term.
562 * @param bool $searchanywhere Can the search term be anywhere, or must it be at the start.
563 * @param int $page Starting at 0.
564 * @param int $perpage Number of users returned per page.
565 * @param bool $returnexactcount Return the exact total users using count_record or not.
566 * @param ?int $contextid Context ID we are in - we might use search on activity level and its group mode can be different from course group mode.
567 * @return array with two or three elements:
568 * int totalusers Number users matching the search. (This element only exist if $returnexactcount was set to true)
569 * array users List of user objects returned by the query.
570 * boolean moreusers True if there are still more users, otherwise is False.
572 public function search_users(string $search = '', bool $searchanywhere = false, int $page = 0, int $perpage = 25,
573 bool $returnexactcount = false, ?
int $contextid = null) {
576 [$ufields, $joins, $params, $wherecondition] = $this->get_basic_search_conditions($search, $searchanywhere);
578 if (isset($contextid)) {
579 // If contextid is set, we need to determine the group mode that should be used (module or course).
580 [$context, $course, $cm] = get_context_info_array($contextid);
581 // If cm instance is returned, then use the group mode from the module, otherwise get the course group mode.
582 $groupmode = $cm ?
groups_get_activity_groupmode($cm, $course) : groups_get_course_groupmode($this->course
);
584 // Otherwise, default to the group mode of the course.
585 $context = $this->context
;
586 $groupmode = groups_get_course_groupmode($this->course
);
589 if ($groupmode == SEPARATEGROUPS
&& !has_capability('moodle/site:accessallgroups', $context)) {
590 $groups = groups_get_all_groups($this->course
->id
, $USER->id
, 0, 'g.id');
591 $groupids = array_column($groups, 'id');
593 return ['totalusers' => 0, 'users' => [], 'moreusers' => false];
599 [$enrolledsql, $enrolledparams] = get_enrolled_sql($context, '', $groupids);
601 $fields = 'SELECT ' . $ufields;
602 $countfields = 'SELECT COUNT(u.id)';
603 $sql = " FROM {user} u
605 JOIN ($enrolledsql) je ON je.id = u.id
606 WHERE $wherecondition";
608 $params = array_merge($params, $enrolledparams);
610 return $this->execute_search_queries($search, $fields, $countfields, $sql, $params, $page, $perpage, 0, $returnexactcount);
614 * Gets an array containing some SQL to user for when selecting, params for
615 * that SQL, and the filter that was used in constructing the sql.
617 * @global moodle_database $DB
620 protected function get_instance_sql() {
622 if ($this->_instancessql
=== null) {
623 $instances = $this->get_enrolment_instances();
624 $filter = $this->get_enrolment_filter();
625 if ($filter && array_key_exists($filter, $instances)) {
626 $sql = " = :ifilter";
627 $params = array('ifilter'=>$filter);
631 list($sql, $params) = $DB->get_in_or_equal(array_keys($this->get_enrolment_instances()), SQL_PARAMS_NAMED
);
633 // no enabled instances, oops, we should probably say something
635 $params = array('never'=>-1);
638 $this->instancefilter
= $filter;
639 $this->_instancessql
= array($sql, $params, $filter);
641 return $this->_instancessql
;
645 * Returns all of the enrolment instances for this course.
647 * @param bool $onlyenabled Whether to return data from enabled enrolment instance names only.
650 public function get_enrolment_instances($onlyenabled = false) {
651 if ($this->_instances
=== null) {
652 $this->_instances
= enrol_get_instances($this->course
->id
, $onlyenabled);
654 return $this->_instances
;
658 * Returns the names for all of the enrolment instances for this course.
660 * @param bool $onlyenabled Whether to return data from enabled enrolment instance names only.
663 public function get_enrolment_instance_names($onlyenabled = false) {
664 if ($this->_inames
=== null) {
665 $instances = $this->get_enrolment_instances($onlyenabled);
666 $plugins = $this->get_enrolment_plugins(false);
667 foreach ($instances as $key=>$instance) {
668 if (!isset($plugins[$instance->enrol
])) {
669 // weird, some broken stuff in plugin
670 unset($instances[$key]);
673 $this->_inames
[$key] = $plugins[$instance->enrol
]->get_instance_name($instance);
676 return $this->_inames
;
680 * Gets all of the enrolment plugins that are available for this course.
682 * @param bool $onlyenabled return only enabled enrol plugins
685 public function get_enrolment_plugins($onlyenabled = true) {
686 if ($this->_plugins
=== null) {
687 $this->_plugins
= enrol_get_plugins(true);
691 return $this->_plugins
;
694 if ($this->_allplugins
=== null) {
695 // Make sure we have the same objects in _allplugins and _plugins.
696 $this->_allplugins
= $this->_plugins
;
697 foreach (enrol_get_plugins(false) as $name=>$plugin) {
698 if (!isset($this->_allplugins
[$name])) {
699 $this->_allplugins
[$name] = $plugin;
704 return $this->_allplugins
;
708 * Gets all of the roles this course can contain.
712 public function get_all_roles() {
713 if ($this->_roles
=== null) {
714 $this->_roles
= role_fix_names(get_all_roles($this->context
), $this->context
);
716 return $this->_roles
;
720 * Gets all of the roles this course can contain.
724 public function get_viewable_roles() {
725 if ($this->_visibleroles
=== null) {
726 $this->_visibleroles
= get_viewable_roles($this->context
);
728 return $this->_visibleroles
;
732 * Gets all of the assignable roles for this course.
736 public function get_assignable_roles($otherusers = false) {
737 if ($this->_assignableroles
=== null) {
738 $this->_assignableroles
= get_assignable_roles($this->context
, ROLENAME_ALIAS
, false); // verifies unassign access control too
742 if (!is_array($this->_assignablerolesothers
)) {
743 $this->_assignablerolesothers
= array();
744 list($courseviewroles, $ignored) = get_roles_with_cap_in_context($this->context
, 'moodle/course:view');
745 foreach ($this->_assignableroles
as $roleid=>$role) {
746 if (isset($courseviewroles[$roleid])) {
747 $this->_assignablerolesothers
[$roleid] = $role;
751 return $this->_assignablerolesothers
;
753 return $this->_assignableroles
;
758 * Gets all of the assignable roles for this course, wrapped in an array to ensure
759 * role sort order is not lost during json deserialisation.
761 * @param boolean $otherusers whether to include the assignable roles for other users
764 public function get_assignable_roles_for_json($otherusers = false) {
765 $rolesarray = array();
766 $assignable = $this->get_assignable_roles($otherusers);
767 foreach ($assignable as $id => $role) {
768 $rolesarray[] = array('id' => $id, 'name' => $role);
774 * Gets all of the groups for this course.
778 public function get_all_groups() {
779 if ($this->_groups
=== null) {
780 $this->_groups
= groups_get_all_groups($this->course
->id
);
781 foreach ($this->_groups
as $gid=>$group) {
782 $this->_groups
[$gid]->name
= format_string($group->name
);
785 return $this->_groups
;
789 * Unenrols a user from the course given the users ue entry
791 * @global moodle_database $DB
792 * @param stdClass $ue
795 public function unenrol_user($ue) {
797 list ($instance, $plugin) = $this->get_user_enrolment_components($ue);
798 if ($instance && $plugin && $plugin->allow_unenrol_user($instance, $ue) && has_capability("enrol/$instance->enrol:unenrol", $this->context
)) {
799 $plugin->unenrol_user($instance, $ue->userid
);
806 * Given a user enrolment record this method returns the plugin and enrolment
807 * instance that relate to it.
809 * @param stdClass|int $userenrolment
810 * @return array array($instance, $plugin)
812 public function get_user_enrolment_components($userenrolment) {
814 if (is_numeric($userenrolment)) {
815 $userenrolment = $DB->get_record('user_enrolments', array('id'=>(int)$userenrolment));
817 $instances = $this->get_enrolment_instances();
818 $plugins = $this->get_enrolment_plugins(false);
819 if (!$userenrolment ||
!isset($instances[$userenrolment->enrolid
])) {
820 return array(false, false);
822 $instance = $instances[$userenrolment->enrolid
];
823 $plugin = $plugins[$instance->enrol
];
824 return array($instance, $plugin);
828 * Removes an assigned role from a user.
830 * @global moodle_database $DB
835 public function unassign_role_from_user($userid, $roleid) {
837 // Admins may unassign any role, others only those they could assign.
838 if (!is_siteadmin() and !array_key_exists($roleid, $this->get_assignable_roles())) {
839 if (defined('AJAX_SCRIPT')) {
840 throw new moodle_exception('invalidrole');
844 $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST
);
845 $ras = $DB->get_records('role_assignments', array('contextid'=>$this->context
->id
, 'userid'=>$user->id
, 'roleid'=>$roleid));
846 foreach ($ras as $ra) {
847 if ($ra->component
) {
848 if (strpos($ra->component
, 'enrol_') !== 0) {
851 if (!$plugin = enrol_get_plugin(substr($ra->component
, 6))) {
854 if ($plugin->roles_protected()) {
858 role_unassign($ra->roleid
, $ra->userid
, $ra->contextid
, $ra->component
, $ra->itemid
);
864 * Assigns a role to a user.
870 public function assign_role_to_user($roleid, $userid) {
871 require_capability('moodle/role:assign', $this->context
);
872 if (!array_key_exists($roleid, $this->get_assignable_roles())) {
873 if (defined('AJAX_SCRIPT')) {
874 throw new moodle_exception('invalidrole');
878 return role_assign($roleid, $userid, $this->context
->id
, '', NULL);
882 * Adds a user to a group
884 * @param stdClass $user
885 * @param int $groupid
888 public function add_user_to_group($user, $groupid) {
889 require_capability('moodle/course:managegroups', $this->context
);
890 $group = $this->get_group($groupid);
894 return groups_add_member($group->id
, $user->id
);
898 * Removes a user from a group
900 * @global moodle_database $DB
901 * @param StdClass $user
902 * @param int $groupid
905 public function remove_user_from_group($user, $groupid) {
907 require_capability('moodle/course:managegroups', $this->context
);
908 $group = $this->get_group($groupid);
909 if (!groups_remove_member_allowed($group, $user)) {
915 return groups_remove_member($group, $user);
919 * Gets the requested group
921 * @param int $groupid
922 * @return stdClass|int
924 public function get_group($groupid) {
925 $groups = $this->get_all_groups();
926 if (!array_key_exists($groupid, $groups)) {
929 return $groups[$groupid];
935 * @param stdClass $userenrolment
936 * @param stdClass $data
939 public function edit_enrolment($userenrolment, $data) {
940 //Only allow editing if the user has the appropriate capability
941 //Already checked in /user/index.php but checking again in case this function is called from elsewhere
942 list($instance, $plugin) = $this->get_user_enrolment_components($userenrolment);
943 if ($instance && $plugin && $plugin->allow_manage($instance) && has_capability("enrol/$instance->enrol:manage", $this->context
)) {
944 if (!isset($data->status
)) {
945 $data->status
= $userenrolment->status
;
947 $plugin->update_user_enrol($instance, $userenrolment->userid
, $data->status
, $data->timestart
, $data->timeend
);
954 * Returns the current enrolment filter that is being applied by this class
957 public function get_enrolment_filter() {
958 return $this->instancefilter
;
962 * Gets the roles assigned to this user that are applicable for this course.
967 public function get_user_roles($userid) {
969 $ras = get_user_roles($this->context
, $userid, true, 'c.contextlevel DESC, r.sortorder ASC');
970 $plugins = $this->get_enrolment_plugins(false);
971 foreach ($ras as $ra) {
972 if ($ra->contextid
!= $this->context
->id
) {
973 if (!array_key_exists($ra->roleid
, $roles)) {
974 $roles[$ra->roleid
] = null;
976 // higher ras, course always takes precedence
979 if (array_key_exists($ra->roleid
, $roles) && $roles[$ra->roleid
] === false) {
983 if ($ra->component
) {
985 if (strpos($ra->component
, 'enrol_') === 0) {
986 $plugin = substr($ra->component
, 6);
987 if (isset($plugins[$plugin])) {
988 $changeable = !$plugins[$plugin]->roles_protected();
993 $roles[$ra->roleid
] = $changeable;
999 * Gets the enrolments this user has in the course - including all suspended plugins and instances.
1001 * @global moodle_database $DB
1002 * @param int $userid
1005 public function get_user_enrolments($userid) {
1007 list($instancessql, $params, $filter) = $this->get_instance_sql();
1008 $params['userid'] = $userid;
1009 $userenrolments = $DB->get_records_select('user_enrolments', "enrolid $instancessql AND userid = :userid", $params);
1010 $instances = $this->get_enrolment_instances();
1011 $plugins = $this->get_enrolment_plugins(false);
1012 $inames = $this->get_enrolment_instance_names();
1013 foreach ($userenrolments as &$ue) {
1014 $ue->enrolmentinstance
= $instances[$ue->enrolid
];
1015 $ue->enrolmentplugin
= $plugins[$ue->enrolmentinstance
->enrol
];
1016 $ue->enrolmentinstancename
= $inames[$ue->enrolmentinstance
->id
];
1018 return $userenrolments;
1022 * Gets the groups this user belongs to
1024 * @param int $userid
1027 public function get_user_groups($userid) {
1028 return groups_get_all_groups($this->course
->id
, $userid, 0, 'g.id');
1032 * Retursn an array of params that would go into the URL to return to this
1037 public function get_url_params() {
1039 'id' => $this->course
->id
1041 if (!empty($this->instancefilter
)) {
1042 $args['ifilter'] = $this->instancefilter
;
1044 if (!empty($this->rolefilter
)) {
1045 $args['role'] = $this->rolefilter
;
1047 if ($this->searchfilter
!== '') {
1048 $args['search'] = $this->searchfilter
;
1050 if (!empty($this->groupfilter
)) {
1051 $args['filtergroup'] = $this->groupfilter
;
1053 if ($this->statusfilter
!== -1) {
1054 $args['status'] = $this->statusfilter
;
1060 * Returns the course this object is managing enrolments for
1064 public function get_course() {
1065 return $this->course
;
1069 * Returns the course context
1073 public function get_context() {
1074 return $this->context
;
1078 * Gets an array of other users in this course ready for display.
1080 * Other users are users who have been assigned or inherited roles within this
1081 * course but have not been enrolled.
1083 * @param core_enrol_renderer $renderer
1084 * @param moodle_url $pageurl
1085 * @param string $sort
1086 * @param string $direction ASC | DESC
1087 * @param int $page Starting from 0
1088 * @param int $perpage
1091 public function get_other_users_for_display(core_enrol_renderer
$renderer, moodle_url
$pageurl, $sort, $direction, $page, $perpage) {
1093 $userroles = $this->get_other_users($sort, $direction, $page, $perpage);
1094 $roles = $this->get_all_roles();
1095 $plugins = $this->get_enrolment_plugins(false);
1097 $context = $this->get_context();
1099 // TODO Does not support custom user profile fields (MDL-70456).
1100 $extrafields = fields
::get_identity_fields($context, false);
1103 foreach ($userroles as $userrole) {
1104 $contextid = $userrole->contextid
;
1105 unset($userrole->contextid
); // This would collide with user avatar.
1106 if (!array_key_exists($userrole->id
, $users)) {
1107 $users[$userrole->id
] = $this->prepare_user_for_display($userrole, $extrafields, $now);
1110 $a->role
= $roles[$userrole->roleid
]->localname
;
1111 if ($contextid == $this->context
->id
) {
1113 if ($userrole->component
) {
1114 $changeable = false;
1115 if (strpos($userrole->component
, 'enrol_') === 0) {
1116 $plugin = substr($userrole->component
, 6);
1117 if (isset($plugins[$plugin])) {
1118 $changeable = !$plugins[$plugin]->roles_protected();
1122 $roletext = get_string('rolefromthiscourse', 'enrol', $a);
1124 $changeable = false;
1125 switch ($userrole->contextlevel
) {
1126 case CONTEXT_COURSE
:
1128 $roletext = get_string('rolefrommetacourse', 'enrol', $a);
1130 case CONTEXT_COURSECAT
:
1131 $roletext = get_string('rolefromcategory', 'enrol', $a);
1133 case CONTEXT_SYSTEM
:
1135 $roletext = get_string('rolefromsystem', 'enrol', $a);
1139 if (!isset($users[$userrole->id
]['roles'])) {
1140 $users[$userrole->id
]['roles'] = array();
1142 $users[$userrole->id
]['roles'][$userrole->roleid
] = array(
1143 'text' => $roletext,
1144 'unchangeable' => !$changeable
1151 * Gets an array of users for display, this includes minimal user information
1152 * as well as minimal information on the users roles, groups, and enrolments.
1154 * @param core_enrol_renderer $renderer
1155 * @param moodle_url $pageurl
1157 * @param string $direction ASC or DESC
1159 * @param int $perpage
1162 public function get_users_for_display(course_enrolment_manager
$manager, $sort, $direction, $page, $perpage) {
1163 $pageurl = $manager->get_moodlepage()->url
;
1164 $users = $this->get_users($sort, $direction, $page, $perpage);
1167 $straddgroup = get_string('addgroup', 'group');
1168 $strunenrol = get_string('unenrol', 'enrol');
1169 $stredit = get_string('edit');
1171 $visibleroles = $this->get_viewable_roles();
1172 $assignable = $this->get_assignable_roles();
1173 $allgroups = $this->get_all_groups();
1174 $context = $this->get_context();
1175 $canmanagegroups = has_capability('moodle/course:managegroups', $context);
1177 $url = new moodle_url($pageurl, $this->get_url_params());
1178 // TODO Does not support custom user profile fields (MDL-70456).
1179 $extrafields = fields
::get_identity_fields($context, false);
1181 $enabledplugins = $this->get_enrolment_plugins(true);
1183 $userdetails = array();
1184 foreach ($users as $user) {
1185 $details = $this->prepare_user_for_display($user, $extrafields, $now);
1188 $details['roles'] = array();
1189 foreach ($this->get_user_roles($user->id
) as $rid=>$rassignable) {
1190 $unchangeable = !$rassignable;
1191 if (!is_siteadmin() and !isset($assignable[$rid])) {
1192 $unchangeable = true;
1195 if (isset($visibleroles[$rid])) {
1196 $label = $visibleroles[$rid];
1198 $label = get_string('novisibleroles', 'role');
1199 $unchangeable = true;
1202 $details['roles'][$rid] = array('text' => $label, 'unchangeable' => $unchangeable);
1206 $usergroups = $this->get_user_groups($user->id
);
1207 $details['groups'] = array();
1208 foreach($usergroups as $gid=>$unused) {
1209 $details['groups'][$gid] = $allgroups[$gid]->name
;
1213 $details['enrolments'] = array();
1214 foreach ($this->get_user_enrolments($user->id
) as $ue) {
1215 if (!isset($enabledplugins[$ue->enrolmentinstance
->enrol
])) {
1216 $details['enrolments'][$ue->id
] = array(
1217 'text' => $ue->enrolmentinstancename
,
1220 'actions' => array()
1223 } else if ($ue->timestart
and $ue->timeend
) {
1224 $period = get_string('periodstartend', 'enrol', array('start'=>userdate($ue->timestart
), 'end'=>userdate($ue->timeend
)));
1225 $periodoutside = ($ue->timestart
&& $ue->timeend
&& ($now < $ue->timestart ||
$now > $ue->timeend
));
1226 } else if ($ue->timestart
) {
1227 $period = get_string('periodstart', 'enrol', userdate($ue->timestart
));
1228 $periodoutside = ($ue->timestart
&& $now < $ue->timestart
);
1229 } else if ($ue->timeend
) {
1230 $period = get_string('periodend', 'enrol', userdate($ue->timeend
));
1231 $periodoutside = ($ue->timeend
&& $now > $ue->timeend
);
1233 // If there is no start or end show when user was enrolled.
1234 $period = get_string('periodnone', 'enrol', userdate($ue->timecreated
));
1235 $periodoutside = false;
1237 $details['enrolments'][$ue->id
] = array(
1238 'text' => $ue->enrolmentinstancename
,
1239 'period' => $period,
1240 'dimmed' => ($periodoutside or $ue->status
!= ENROL_USER_ACTIVE
or $ue->enrolmentinstance
->status
!= ENROL_INSTANCE_ENABLED
),
1241 'actions' => $ue->enrolmentplugin
->get_user_enrolment_actions($manager, $ue)
1244 $userdetails[$user->id
] = $details;
1246 return $userdetails;
1250 * Prepare a user record for display
1252 * This function is called by both {@link get_users_for_display} and {@link get_other_users_for_display} to correctly
1253 * prepare user fields for display
1255 * Please note that this function does not check capability for moodle/coures:viewhiddenuserfields
1257 * @param object $user The user record
1258 * @param array $extrafields The list of fields as returned from \core_user\fields::get_identity_fields used to determine which
1259 * additional fields may be displayed
1260 * @param int $now The time used for lastaccess calculation
1261 * @return array The fields to be displayed including userid, courseid, picture, firstname, lastcourseaccess, lastaccess and any
1262 * additional fields from $extrafields
1264 private function prepare_user_for_display($user, $extrafields, $now) {
1266 'userid' => $user->id
,
1267 'courseid' => $this->get_course()->id
,
1268 'picture' => new user_picture($user),
1269 'userfullnamedisplay' => fullname($user, has_capability('moodle/site:viewfullnames', $this->get_context())),
1270 'lastaccess' => get_string('never'),
1271 'lastcourseaccess' => get_string('never'),
1274 foreach ($extrafields as $field) {
1275 $details[$field] = s($user->{$field});
1278 // Last time user has accessed the site.
1279 if (!empty($user->lastaccess
)) {
1280 $details['lastaccess'] = format_time($now - $user->lastaccess
);
1283 // Last time user has accessed the course.
1284 if (!empty($user->lastcourseaccess
)) {
1285 $details['lastcourseaccess'] = format_time($now - $user->lastcourseaccess
);
1290 public function get_manual_enrol_buttons() {
1291 $plugins = $this->get_enrolment_plugins(true); // Skip disabled plugins.
1293 foreach ($plugins as $plugin) {
1294 $newbutton = $plugin->get_manual_enrol_button($this);
1295 if (is_array($newbutton)) {
1296 $buttons +
= $newbutton;
1297 } else if ($newbutton instanceof enrol_user_button
) {
1298 $buttons[] = $newbutton;
1304 public function has_instance($enrolpluginname) {
1305 // Make sure manual enrolments instance exists
1306 foreach ($this->get_enrolment_instances() as $instance) {
1307 if ($instance->enrol
== $enrolpluginname) {
1315 * Returns the enrolment plugin that the course manager was being filtered to.
1317 * If no filter was being applied then this function returns false.
1319 * @return enrol_plugin
1321 public function get_filtered_enrolment_plugin() {
1322 $instances = $this->get_enrolment_instances();
1323 $plugins = $this->get_enrolment_plugins(false);
1325 if (empty($this->instancefilter
) ||
!array_key_exists($this->instancefilter
, $instances)) {
1329 $instance = $instances[$this->instancefilter
];
1330 return $plugins[$instance->enrol
];
1334 * Returns and array of users + enrolment details.
1336 * Given an array of user id's this function returns and array of user enrolments for those users
1337 * as well as enough user information to display the users name and picture for each enrolment.
1339 * @global moodle_database $DB
1340 * @param array $userids
1343 public function get_users_enrolments(array $userids) {
1346 $instances = $this->get_enrolment_instances();
1347 $plugins = $this->get_enrolment_plugins(false);
1349 if (!empty($this->instancefilter
)) {
1350 $instancesql = ' = :instanceid';
1351 $instanceparams = array('instanceid' => $this->instancefilter
);
1353 list($instancesql, $instanceparams) = $DB->get_in_or_equal(array_keys($instances), SQL_PARAMS_NAMED
, 'instanceid0000');
1356 $userfieldsapi = \core_user\fields
::for_userpic();
1357 $userfields = $userfieldsapi->get_sql('u', false, '', '', false)->selects
;
1358 list($idsql, $idparams) = $DB->get_in_or_equal($userids, SQL_PARAMS_NAMED
, 'userid0000');
1360 list($sort, $sortparams) = users_order_by_sql('u');
1362 $sql = "SELECT ue.id AS ueid, ue.status, ue.enrolid, ue.userid, ue.timestart, ue.timeend, ue.modifierid, ue.timecreated, ue.timemodified, $userfields
1363 FROM {user_enrolments} ue
1364 LEFT JOIN {user} u ON u.id = ue.userid
1365 WHERE ue.enrolid $instancesql AND
1369 $rs = $DB->get_recordset_sql($sql, $idparams +
$instanceparams +
$sortparams);
1371 foreach ($rs as $ue) {
1372 $user = user_picture
::unalias($ue);
1373 $ue->id
= $ue->ueid
;
1375 if (!array_key_exists($user->id
, $users)) {
1376 $user->enrolments
= array();
1377 $users[$user->id
] = $user;
1379 $ue->enrolmentinstance
= $instances[$ue->enrolid
];
1380 $ue->enrolmentplugin
= $plugins[$ue->enrolmentinstance
->enrol
];
1381 $users[$user->id
]->enrolments
[$ue->id
] = $ue;
1389 * A button that is used to enrol users in a course
1391 * @copyright 2010 Sam Hemelryk
1392 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1394 class enrol_user_button
extends single_button
{
1397 * An array containing JS YUI modules required by this button
1400 protected $jsyuimodules = array();
1403 * An array containing JS initialisation calls required by this button
1406 protected $jsinitcalls = array();
1409 * An array strings required by JS for this button
1412 protected $jsstrings = array();
1415 * Initialises the new enrol_user_button
1417 * @staticvar int $count The number of enrol user buttons already created
1418 * @param moodle_url $url
1419 * @param string $label The text to display in the button
1420 * @param string $method Either post or get
1422 public function __construct(moodle_url
$url, $label, $method = 'post') {
1425 parent
::__construct($url, $label, $method);
1426 $this->class = 'singlebutton enrolusersbutton';
1427 $this->formid
= 'enrolusersbutton-'.$count;
1431 * Adds a YUI module call that will be added to the page when the button is used.
1433 * @param string|array $modules One or more modules to require
1434 * @param string $function The JS function to call
1435 * @param array $arguments An array of arguments to pass to the function
1436 * @param string $galleryversion Deprecated: The gallery version to use
1437 * @param bool $ondomready If true the call is postponed until the DOM is finished loading
1439 public function require_yui_module($modules, $function, array $arguments = null, $galleryversion = null, $ondomready = false) {
1440 if ($galleryversion != null) {
1441 debugging('The galleryversion parameter to yui_module has been deprecated since Moodle 2.3.', DEBUG_DEVELOPER
);
1445 $js->modules
= (array)$modules;
1446 $js->function = $function;
1447 $js->arguments
= $arguments;
1448 $js->ondomready
= $ondomready;
1449 $this->jsyuimodules
[] = $js;
1453 * Adds a JS initialisation call to the page when the button is used.
1455 * @param string $function The function to call
1456 * @param array $extraarguments An array of arguments to pass to the function
1457 * @param bool $ondomready If true the call is postponed until the DOM is finished loading
1458 * @param array $module A module definition
1460 public function require_js_init_call($function, array $extraarguments = null, $ondomready = false, array $module = null) {
1462 $js->function = $function;
1463 $js->extraarguments
= $extraarguments;
1464 $js->ondomready
= $ondomready;
1465 $js->module
= $module;
1466 $this->jsinitcalls
[] = $js;
1470 * Requires strings for JS that will be loaded when the button is used.
1472 * @param type $identifiers
1473 * @param string $component
1476 public function strings_for_js($identifiers, $component = 'moodle', $a = null) {
1477 $string = new stdClass
;
1478 $string->identifiers
= (array)$identifiers;
1479 $string->component
= $component;
1481 $this->jsstrings
[] = $string;
1485 * Initialises the JS that is required by this button
1487 * @param moodle_page $page
1489 public function initialise_js(moodle_page
$page) {
1490 foreach ($this->jsyuimodules
as $js) {
1491 $page->requires
->yui_module($js->modules
, $js->function, $js->arguments
, null, $js->ondomready
);
1493 foreach ($this->jsinitcalls
as $js) {
1494 $page->requires
->js_init_call($js->function, $js->extraarguments
, $js->ondomready
, $js->module
);
1496 foreach ($this->jsstrings
as $string) {
1497 $page->requires
->strings_for_js($string->identifiers
, $string->component
, $string->a
);
1503 * User enrolment action
1505 * This class is used to manage a renderable ue action such as editing an user enrolment or deleting
1508 * @copyright 2011 Sam Hemelryk
1509 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1511 class user_enrolment_action
implements renderable
{
1514 * The icon to display for the action
1520 * The title for the action
1526 * The URL to the action
1532 * An array of HTML attributes
1535 protected $attributes = array();
1539 * @param pix_icon $icon
1540 * @param string $title
1541 * @param moodle_url $url
1542 * @param array $attributes
1544 public function __construct(pix_icon
$icon, $title, $url, array $attributes = null) {
1545 $this->icon
= $icon;
1546 $this->title
= $title;
1547 $this->url
= new moodle_url($url);
1548 if (!empty($attributes)) {
1549 $this->attributes
= $attributes;
1551 $this->attributes
['title'] = $title;
1555 * Returns the icon for this action
1558 public function get_icon() {
1563 * Returns the title for this action
1566 public function get_title() {
1567 return $this->title
;
1571 * Returns the URL for this action
1572 * @return moodle_url
1574 public function get_url() {
1579 * Returns the attributes to use for this action
1582 public function get_attributes() {
1583 return $this->attributes
;
1587 class enrol_ajax_exception
extends moodle_exception
{
1590 * @param string $errorcode The name of the string from error.php to print
1591 * @param string $module name of module
1592 * @param string $link The url where the user will be prompted to continue. If no url is provided the user will be directed to the site index page.
1593 * @param object $a Extra words and phrases that might be required in the error string
1594 * @param string $debuginfo optional debugging information
1596 public function __construct($errorcode, $link = '', $a = NULL, $debuginfo = null) {
1597 parent
::__construct($errorcode, 'enrol', $link, $a, $debuginfo);
1602 * This class is used to manage a bulk operations for enrolment plugins.
1604 * @copyright 2011 Sam Hemelryk
1605 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1607 abstract class enrol_bulk_enrolment_operation
{
1610 * The course enrolment manager
1611 * @var course_enrolment_manager
1616 * The enrolment plugin to which this operation belongs
1623 * @param course_enrolment_manager $manager
1624 * @param stdClass $plugin
1626 public function __construct(course_enrolment_manager
$manager, enrol_plugin
$plugin = null) {
1627 $this->manager
= $manager;
1628 $this->plugin
= $plugin;
1632 * Returns a moodleform used for this operation, or false if no form is required and the action
1633 * should be immediatly processed.
1635 * @param moodle_url|string $defaultaction
1636 * @param mixed $defaultcustomdata
1637 * @return enrol_bulk_enrolment_change_form|moodleform|false
1639 public function get_form($defaultaction = null, $defaultcustomdata = null) {
1644 * Returns the title to use for this bulk operation
1648 abstract public function get_title();
1651 * Returns the identifier for this bulk operation.
1652 * This should be the same identifier used by the plugins function when returning
1653 * all of its bulk operations.
1657 abstract public function get_identifier();
1660 * Processes the bulk operation on the given users
1662 * @param course_enrolment_manager $manager
1663 * @param array $users
1664 * @param stdClass $properties
1666 abstract public function process(course_enrolment_manager
$manager, array $users, stdClass
$properties);