file SafeEmbed.php was added on branch MOODLE_19_STABLE on 2010-05-21 11:39:45 +0000
[moodle.git] / enrol / database / enrol_database_sync.php
blob322b1b2395cc90a42f39155536ccea34bf5cbaa9
1 <?php // $Id$
3 if(!empty($_SERVER['GATEWAY_INTERFACE'])){
4 error_log("should not be called from apache!");
5 exit;
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
16 $CFG->debug=E_ALL;
18 if (!is_enabled_enrol('database')) {
19 error_log("Database enrol plugin not enabled!");
20 die;
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
28 // specified).
29 $roles = !empty($CFG->enrol_db_remoterolefield) && !empty($CFG->enrol_db_localrolefield)
30 ? get_records('role')
31 : array(null);
33 foreach ($roles as $role) {
34 $enrol->sync_enrolments($role);
37 // sync metacourses
38 if (function_exists('sync_metacourses')) {
39 sync_metacourses();