mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
25 lines
663 B
PHP
25 lines
663 B
PHP
<?php // $Id$
|
|
|
|
/**
|
|
* enrolment_factory is used to "manufacture" an instance of required enrolment plugin.
|
|
*/
|
|
|
|
class enrolment_factory {
|
|
function factory($enrol = '') {
|
|
global $CFG;
|
|
if (!$enrol) {
|
|
$enrol = $CFG->enrol;
|
|
}
|
|
if (file_exists("$CFG->dirroot/enrol/$enrol/enrol.php")) {
|
|
require_once("$CFG->dirroot/enrol/$enrol/enrol.php");
|
|
$class = "enrolment_plugin_$enrol";
|
|
return new $class;
|
|
} else {
|
|
trigger_error("$CFG->dirroot/enrol/$enrol/enrol.php does not exist");
|
|
notify("Enrolment file $enrol/enrol.php does not exist");
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|