mirror of
https://github.com/moodle/moodle.git
synced 2025-02-15 05:15:07 +01:00
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!
|
|
}
|
|
|
|
?>
|