3 if(!empty($_SERVER['GATEWAY_INTERFACE'])){
4 error_log("should not be called from apache!");
7 error_reporting(E_ALL
);
9 require_once(dirname(dirname(dirname(__FILE__
))).'/config.php'); // global moodle config file.
11 require_once($CFG->dirroot
. '/course/lib.php');
12 require_once($CFG->dirroot
. '/lib/blocklib.php');
13 require_once($CFG->dirroot
. "/enrol/database/enrol.php");
15 // ensure errors are well explained
18 if (!is_enabled_enrol('database')) {
19 error_log("Database enrol plugin not enabled!");
23 // update enrolments -- these handlers should autocreate courses if required
24 $enrol = new enrolment_plugin_database();
26 // If we have settings to handle roles individually, through each type of
27 // role and update it. Otherwise, just got through once (with no role
29 $roles = !empty($CFG->enrol_db_remoterolefield
) && !empty($CFG->enrol_db_localrolefield
)
33 foreach ($roles as $role) {
34 $enrol->sync_enrolments($role);
38 if (function_exists('sync_metacourses')) {