mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
b8e13a5742
The internal method (the default) simply replicates Moodle's existing behaviour and is working fine. The new flatfile module also works. There is no admin config interface yet, I'm still implementing this using templates.
9 lines
160 B
PHP
9 lines
160 B
PHP
<?php
|
|
require_once("$CFG->dirroot/enrol/enrol.class.php");
|
|
|
|
class enrolment_plugin extends enrolment_base {
|
|
/// nothing to do - it's already perfect!
|
|
}
|
|
|
|
?>
|