-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathlib.php
More file actions
716 lines (625 loc) · 27 KB
/
lib.php
File metadata and controls
716 lines (625 loc) · 27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Profile field enrolment plugin.
*
* This plugin provides automatic enrol when a user enters the course with
* a convenient profile value.
*
* @package enrol_profilefield
* @category enrol
* @author Valery Fremaux <valery.fremaux@gmail.com>
* @copyright 2012 Valery Fremaux
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
if (!function_exists('debug_trace')) {
@include_once($CFG->dirroot.'/local/advancedperfs/debugtools.php');
if (!function_exists('debug_trace')) {
function debug_trace($msg, $tracelevel = 0, $label = '', $backtracelevel = 1) {
// Fake this function if not existing in the target moodle environment.
assert(1);
}
define('TRACE_ERRORS', 1); // Errors should be always traced when trace is on.
define('TRACE_NOTICE', 3); // Notices are important notices in normal execution.
define('TRACE_DEBUG', 5); // Debug are debug time notices that should be burried in debug_fine level when debug is ok.
define('TRACE_DATA', 8); // Data level is when requiring to see data structures content.
define('TRACE_DEBUG_FINE', 10); // Debug fine are control points we want to keep when code is refactored and debug needs to be reactivated.
}
}
define('SINGLE_FIELD', 0);
define('MULTIPLE_FIELDS', 1);
class enrol_profilefield_plugin extends enrol_plugin {
public function allow_enrol(stdClass $instance) {
// Users with enrol cap may enrol other users manually.
return true;
}
public function allow_unenrol(stdClass $instance) {
// Users with unenrol cap may unenrol other users manually.
return true;
}
public function allow_manage(stdClass $instance) {
// Users with manage cap may tweak period and status.
return true;
}
public function show_enrolme_link(stdClass $instance) {
return ($instance->status == ENROL_INSTANCE_ENABLED);
}
public function get_info_icons(array $instances) {
return array(new pix_icon('icon', get_string('pluginname', 'enrol_profilefield'), 'enrol_profilefield'));
}
/**
* Is it possible to delete enrol instance via standard UI?
*
* @param object $instance
* @return bool
*/
public function can_delete_instance($instance) {
$context = context_course::instance($instance->courseid);
return has_capability('enrol/profilefield:config', $context);
}
/**
* Returns link to page which may be used to add new instance of enrolment plugin in course.
* @param int $courseid
* @return moodle_url page url
*/
public function get_newinstance_link($courseid) {
$context = context_course::instance($courseid, MUST_EXIST);
if (!has_capability('moodle/course:enrolconfig', $context) or !has_capability('enrol/profilefield:config', $context)) {
return null;
}
// Multiple instances supported.
return new moodle_url('/enrol/profilefield/edit.php', array('courseid' => $courseid));
}
/**
* Returns enrolment instance manage link.
*
* By defaults looks for manage.php file and tests for manage capability.
*
* @param navigation_node $instancesnode
* @param stdClass $instance
* @return moodle_url;
*/
public function add_course_navigation($instancesnode, stdClass $instance) {
if ($instance->enrol !== 'profilefield') {
throw new coding_exception('Invalid enrol instance type!');
}
$context = context_course::instance($instance->courseid);
if (has_capability('enrol/profilefield:config', $context)) {
$params = array('id' => $instance->id, 'courseid' => $instance->courseid, 'type' => $instance->enrol);
$managelink = new moodle_url('/enrol/profilefield/edit.php', $params);
$instancesnode->add($this->get_instance_name($instance), $managelink, navigation_node::TYPE_SETTING);
}
}
/**
* Returns edit icons for the page with list of instances
* @param stdClass $instance
* @return array
*/
public function get_action_icons(stdClass $instance) {
global $OUTPUT;
if ($instance->enrol !== 'profilefield') {
throw new coding_exception('invalid enrol instance!');
}
$context = context_course::instance($instance->courseid);
$icons = array();
if (has_capability('enrol/profilefield:config', $context)) {
$params = array('courseid' => $instance->courseid, 'id' => $instance->id);
$editlink = new moodle_url('/enrol/profilefield/edit.php', $params);
$icon = new pix_icon('t/edit', get_string('edit'), 'core', array('class' => 'iconsmall'));
$icons[] = $OUTPUT->action_icon($editlink, $icon);
}
return $icons;
}
/**
* Gets an array of the user enrolment actions. These are provided
* in the enrolled user list, in the enrolment method column.
*
* @param course_enrolment_manager $manager
* @param stdClass $ue A user enrolment object
* @return array An array of user_enrolment_actions
*/
public function get_user_enrolment_actions(course_enrolment_manager $manager, $ue) {
$actions = array();
$context = $manager->get_context();
$instance = $ue->enrolmentinstance;
$params = $manager->get_moodlepage()->url->params();
$params['ue'] = $ue->id;
if ($this->allow_unenrol($instance) && has_capability('enrol/profilefield:unenrol', $context)) {
$url = new moodle_url('/enrol/unenroluser.php', $params);
$attrs = array('class' => 'unenrollink', 'rel' => $ue->id);
$actions[] = new user_enrolment_action(new pix_icon('t/delete', ''), get_string('unenrol', 'enrol'), $url, $attrs);
}
if ($this->allow_manage($instance) && has_capability('enrol/profilefield:manage', $context)) {
$url = new moodle_url('/enrol/profilefield/editenrolment.php', $params);
$attrs = array('class' => 'editenrollink', 'rel' => $ue->id);
$actions[] = new user_enrolment_action(new pix_icon('t/edit', ''), get_string('edit'), $url, $attrs);
}
return $actions;
}
/**
* Creates course enrol form, checks if form submitted
* and enrols user if necessary. It can also redirect.
*
* @param stdClass $instance
* @return string html text, usually a form in a text box
*/
public function enrol_page_hook(stdClass $instance) {
global $CFG, $OUTPUT, $USER, $DB;
if (isguestuser()) {
// Can not enrol guest!!
return null;
}
if ($DB->record_exists('user_enrolments', array('userid' => $USER->id, 'enrolid' => $instance->id))) {
// TODO: maybe we should tell them they are already enrolled, but can not access the course.
return null;
}
if ($instance->enrolstartdate != 0 and $instance->enrolstartdate > time()) {
// TODO: inform that we can not enrol yet.
return null;
}
if ($instance->enrolenddate != 0 and $instance->enrolenddate < time()) {
// TODO: inform that enrolment is not possible any more.
return null;
}
if (!$this->check_user_profile_conditions($instance)) {
$output = $OUTPUT->heading(get_string('pluginname', 'enrol_profilefield'), 2);
$output .= $OUTPUT->notification(get_string('badprofile', 'enrol_profilefield'));
$output .= $OUTPUT->continue_button($CFG->wwwroot);
return $OUTPUT->box($output);
}
require_once($CFG->dirroot.'/enrol/profilefield/enrol_form.php');
require_once($CFG->dirroot.'/group/lib.php');
$form = new enrol_profilefield_enrol_form(null, $instance);
$instanceid = optional_param('instance', 0, PARAM_INT);
if ($instance->id == $instanceid) {
if ($data = $form->get_data()) {
$enrol = enrol_get_plugin('profilefield');
$timestart = time();
if ($instance->enrolperiod) {
$timeend = $timestart + $instance->enrolperiod;
} else {
$timeend = 0;
}
$this->enrol_user($instance, $USER->id, $instance->roleid, $timestart, $timeend);
// Autocreate group if required.
$this->process_group($instance, $USER);
// In addition check also the password for autogrouping by the user.
if (!empty($data->enrolpassword)) {
// It must be a group enrolment, let's assign group too.
if ($groups = $DB->get_records('groups', array('courseid' => $instance->courseid), 'id', 'id, enrolmentkey')) {
foreach ($groups as $group) {
if (empty($group->enrolmentkey)) {
continue;
}
if ($group->enrolmentkey === $data->enrolpassword) {
groups_add_member($group->id, $USER->id);
break;
}
}
}
}
// Send notification to teachers.
if ($instance->customint1) {
$this->notify_owners($instance, $USER);
}
}
}
ob_start();
echo $OUTPUT->notification(get_string('enrolmentconfirmation', 'enrol_profilefield'));
$form->display();
$output = ob_get_clean();
return $OUTPUT->box($output);
}
/**
* checks all user profile conditions to get in.
* @param enrolobject $instance
* @param object $user
*/
public function check_user_profile_conditions(stdClass $instance, $user = null) {
global $USER, $DB, $OUTPUT, $CFG;
$config = get_config('enrol_profilefield');
if (is_null($user)) {
$user = $USER;
}
if ($config->multiplefields == SINGLE_FIELD) {
$profilefield = $instance->customchar1;
$profilevalue = (!empty($instance->customtext2)) ? $instance->customtext2 : '';
if (preg_match('/^profile_field_(.*)$/', $profilefield, $matches)) {
// Case of user custom fields.
if (!$pfield = $DB->get_record('user_info_field', array('shortname' => $matches[1]))) {
return false;
}
$params = array('userid' => $user->id, 'fieldid' => $pfield->id);
$uservalue = $DB->get_field('user_info_data', 'data', $params);
if (strpos($profilevalue, 'REGEXP:') === 0) {
$profilevalue = trim(preg_replace('/^REGEXP:/', '', $profilevalue));
if (preg_match('/'.$profilevalue.'/', $uservalue)) {
return true;
} else {
debug_trace("Not matching because Regexp /{$profilevalue}/ failed");
}
} else {
if ($uservalue == $profilevalue) {
return true;
} else {
debug_trace("Not matching because values not equal to {$profilevalue}");
}
}
} else {
// We guess it is a standard user attribute.
if (isset($user->$profilefield)) {
$uservalue = $user->$profilefield;
if (strpos($profilevalue, 'REGEXP:') === 0) {
$profilevalue = trim(preg_replace('/^REGEXP:/', '', $profilevalue));
if (preg_match('/'.$profilevalue.'/', $uservalue)) {
return true;
} else {
debug_trace("Not matching because Regexp /{$profilevalue}/ in '$uservalue' failed");
}
} else {
if ($uservalue == $profilevalue) {
return true;
} else {
debug_trace("Not matching because values not equal to {$profilevalue}");
}
}
}
}
} else {
// customchar1 holds fieldnames and operators expressions
// customtext2 holds fieldexpected values, in order
if (empty($instance->customchar1)) {
return false;
}
// We start with a rough setup.
$parts = explode(' ', $instance->customchar1);
$profilevalues = explode(',', $instance->customtext2);
// We expect : profile_fields or user attribute names miwed with AND or OR operator.
$expectsfieldname = true;
$datas = array();
$operators = array();
$fields = array();
foreach ($parts as $part) {
if ($expectsfieldname) {
if (preg_match('/^profile_field_/', trim($part))) {
$shortname = str_replace('profile_field_', '', $part);
$pfield = $DB->get_record('user_info_field', array('shortname' => $shortname));
$fields[] = $part;
$params = array('userid' => $user->id, 'fieldid' => $pfield->id);
$datas[] = $DB->get_field('user_info_data', 'data', $params);
} else {
$attribute = $part;
$fields[] = $part;
$datas[] = $user->$attribute;
}
$expectsfieldname = false;
} else {
if (!in_array($part, array('AND', 'OR'))) {
throw new moodle_exception('Operator expected must be AND or OR');
}
if ($part == 'AND') {
$operators[] = '&&';
} else {
$operators[] = '||';
}
$expectsfieldname = true;
}
}
if (count($profilevalues) != count($fields) && ($CFG->debug == DEBUG_DEVELOPER)) {
$msg = 'Profile field enrol: Fields and expected values count do not match in instance '.$instance->id;
$msg .= ' and course '.$instance->cid;
echo $OUTPUT->notification($msg, 'notifyerror');
}
$expression = '$result = ';
foreach ($fields as $field) {
$data = trim(array_shift($datas));
$data = str_replace('"', '"', $data);
$expression .= " \"{$data}\" ";
$value = trim(array_shift($profilevalues));
$value = str_replace('"', '"', $value);
$expression .= " == \"{$value}\" ";
$operator = array_shift($operators);
if ($operator) {
$expression .= " {$operator} ";
}
}
if (($CFG->debug == DEBUG_DEVELOPER) && function_exists('debug_trace')) {
debug_trace("Enroling by profie user {$user->id} ");
debug_trace($expression);
}
eval($expression. ";");
return $result;
}
return false;
}
/**
* This is important especially for external enrol plugins,
* this function is called for all enabled enrol plugins
* right after every user login.
*
* @param object $user user record
*
* @return void
*/
public function sync_user_enrolments($user) {
global $DB;
// Get records of all the active AutoEnrol instances which are set to enrol at login.
$params = array('enrol' => 'profilefield', 'status' => 0, 'customint2' => 1);
$instances = $DB->get_records('enrol', $params, null, '*');
// Now get a record of all of the users enrolments.
$userenrolments = $DB->get_records('user_enrolments', array('userid' => $user->id), null, '*');
// Run through all of the autoenrolment instances and check that the user has been enrolled.
foreach ($instances as $instance) {
$found = false;
foreach ($userenrolments as $userenrol) {
if ($userenrol->enrolid == $instance->id) {
$found = true;
}
}
if (defined('MOODLE_TEST')) {
echo json_encode($instance).'<br/>';
echo "Checking ".fullname($user).'<br/>';
echo "Allowed : ".$this->check_user_profile_conditions($instance, $user);
}
// Check if user passes the profile check.
if (!$found && $this->check_user_profile_conditions($instance, $user)) {
$this->enrol_user($instance, $user->id, $instance->roleid, time(), 0);
$this->process_group($instance, $user);
// Send notification to teachers.
if ($instance->customint1) {
$this->notify_owners($instance, $user);
}
}
}
}
/**
* Shall we process group and create one from the user's profile values ?
* @param object $instance
* @param object $user
*/
private function process_group(stdClass $instance, $user) {
global $CFG, $DB;
if ($instance->customchar3 != '') {
require_once($CFG->dirroot . '/group/lib.php');
if (!strpos($instance->customchar3, 'g') === false) {
// Pure numeric is an 1,2,3,4 option.
$types = array($user->auth, $user->department, $user->institution, $user->lang);
$groupname = $types[$instance->customchar3];
if (!strlen($name)) {
$filtertype = array(get_string('g_none', 'enrol_autoenrol'),
get_string('g_auth', 'enrol_profilefield'),
get_string('g_dept', 'enrol_profilefield'),
get_string('g_inst', 'enrol_profilefield'),
get_string('g_lang', 'enrol_profilefield'));
$groupname = get_string('emptyfield', 'enrol_profilefield', $filtertype[$instance->customchar3]);
}
$group = $this->get_group($instance, $groupname);
} else {
// Course Group is using pattern g<groupid> - <groupname> @see edit_form.php.
$groupid = str_replace('g', '', $instance->customchar3);
$group = $DB->get_record('groups', ['id' => $groupid]);
if (!$group) {
// Group has been removed ?
return;
}
}
return groups_add_member($group, $user->id);
}
}
/**
* Get or autocreate a group for routing profile enroled users.
* @param stdClass $instance
* @param $name
* @param moodle_database $DB
* @return int|mixed id of the group
* @throws coding_exception
* @throws moodle_exception
*/
private function get_group(stdClass $instance, $name) {
global $DB;
$idnumber = "profilefield|$instance->id|$name";
$autogrouping = $DB->get_record('groupings', array('name' => '_auto_', 'courseid' => $instance->courseid));
if (!$autogrouping) {
$autogrouping = new stdclass();
$autogrouping->courseid = $instance->courseid;
$autogrouping->name = '_auto_';
$autogrouping->id = groups_create_grouping($autogrouping);
}
$group = $DB->get_record('groups', array('idnumber' => $idnumber, 'courseid' => $instance->courseid));
if (!$group) {
$group = new stdclass();
$group->courseid = $instance->courseid;
$group->name = $name;
$group->idnumber = $idnumber;
$group->description = get_string('auto_desc', 'enrol_profilefield');
$group->id = groups_create_group($group);
groups_assign_grouping($autogrouping->id, $group->id);
}
return $group->id;
}
public function notify_owners(&$instance, &$appliant) {
global $DB;
$course = $DB->get_record('course', array('id' => $instance->courseid), '*', MUST_EXIST);
$a = new stdClass();
$a->profileurl = new moodle_url('/user/view.php', array('id' => $appliant->id, 'course' => $course->id));
if (trim($instance->customtext1) !== '') {
$message = $instance->customtext1;
$message = str_replace('<%%USERNAME%%>', fullname($appliant), $message);
$message = str_replace('<%%COURSE%%>', format_string($course->fullname), $message);
$message = str_replace('<%%SHORTNAME%%>', $course->shortname, $message);
$message = str_replace('<%%URL%%>', $a->profileurl, $message);
$subject = get_string('newcourseenrol', 'enrol_profilefield', format_string($course->fullname));
}
$context = context_course::instance($course->id);
$fields = 'u.id, '.get_all_user_name_fields(true, 'u').', emailstop';
if ($managers = get_users_by_capability($context, 'enrol/profilefield:manage', $fields)) {
foreach ($managers as $m) {
$message = str_replace('<%%TEACHER%%>', fullname($m), $message);
email_to_user($m, $appliant, $subject, $message);
}
}
}
/**
* Is it possible to hide/show enrol instance via standard UI?
*
* @param stdClass $instance
* @return bool
*/
public function can_hide_show_instance($instance) {
$context = \context_course::instance($instance->courseid);
return has_capability('enrol/profilefield:manage', $context);
}
/**
* Provides a mapping of script attributes to internal
* storage attributes
* @see local_moodlescript handling
* @return
*/
public function script_attributes($map = true) {
$scriptmap = array(
'name' => 'name',
'status' => 'status',
'role' => 'roleid',
'period' => 'period',
'start' => 'enrolstartdate',
'end' => 'enrolenddate',
'profilefield' => 'customchar1',
'profilevalue' => 'customtext2',
'notifymanagers' => 'customint1',
'auto' => 'customint2',
'autogroup' => 'customchar3',
'overridegrouppassword' => 'customint4',
'maxenrolled' => 'customint5',
'notificationtext' => 'customtext1',
);
$scriptdesc = array(
'name' => array(
'output' => 'name',
'required' => 0,
),
'status' => array(
'output' => 'status',
'required' => 0,
'default' => 0
),
'role' => array(
'output' => 'roleid',
'required' => 0,
'default' => 'hardcoded'
),
'period' => array(
'output' => 'period',
'required' => 0,
'default' => 0
),
'start' => array(
'output' => 'enrolstartdate',
'required' => 0,
),
'end' => array(
'output' => 'enrolenddate',
'required' => 0,
'default' => 0,
),
'profilefield' => array(
'output' => 'customchar1',
'required' => 1,
),
'profilevalue' => array(
'output' => 'customtext2',
'required' => 1
),
'notifymanagers' => array(
'output' => 'customint1',
'required' => 0,
'default' => 0,
),
'auto' => array(
'output' => 'customint2',
'required' => 0,
'default' => 0,
),
'autogroup' => array(
'output' => 'customchar3',
'required' => 0,
'default '=> 0,
),
'overridegrouppassword' => array(
'output' => 'customint4',
'required' => 0,
'default' => 1,
),
'maxenrolled' => array(
'output' => 'customint5',
'required' => 0,
'default' => 0,
),
'notificationtext' => array(
'output' => 'customtext1',
'required' => 0,
'default' => '',
),
);
if ($map) {
return $scriptmap;
} else {
return $scriptdesc;
}
}
/**
* Checks incoming attributes and give report
* @see local_moodlescript handling
* @return
*/
public function script_check($context, &$handler) {
global $USER, $DB;
$profilefieldname = trim($context->params->profilefield);
if (empty($profilefieldname)) {
$handler->error('Enrol ProfileField Script input check : Empty user profile attribute ');
return;
}
if (preg_match('/^profile_field_/', $profilefieldname)) {
debug_trace("Enrol ProfileField Script input check Locating profile field as ".$profilefieldname);
$fieldname = str_replace('profile_field_', '', $profilefieldname);
if (!$DB->get_record('user_info_field', array('shortname' => $fieldname))) {
$handler->error('Enrol ProfileField Script input check : Unkown user profile attribute '.$fieldname);
}
} else {
/*
* this is just a control of existance in the standard profile.
* Real $USER data is not engaged.
*/
if (!isset($USER->$profilefieldname)) {
$handler->error('Enrol ProfileField Script input check : Unkown user attribute '.$profilefieldname);
}
}
}
}
/**
* Indicates API features that the enrol plugin supports.
*
* @param string $feature
* @return mixed True if yes (some features may use other values)
*/
function enrol_profilefield_supports($feature) {
switch ($feature) {
case ENROL_RESTORE_TYPE:
return ENROL_RESTORE_EXACT;
default:
return null;
}
}