moodle/enrol/internal/enrol.php
moodler b8e13a5742 Enrolment architecture version 0.5 !
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.
2004-06-25 03:28:12 +00:00

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!
}
?>