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
17 // update enrolments -- these handlers should autocreate courses if required
18 $enrol = new enrolment_plugin_database();
20 // If we have settings to handle roles individually, through each type of
21 // role and update it. Otherwise, just got through once (with no role
23 $roles = !empty($CFG->enrol_db_remoterolefield
) && !empty($CFG->enrol_db_localrolefield
)
27 foreach ($roles as $role) {
28 $enrol->sync_enrolments($role);
32 if (function_exists('sync_metacourses')) {