mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 18:08:02 +01:00
Added an external script to invoke automatic enrol-unenrol. It also will autocreate courses based on a template.
29 lines
891 B
PHP
29 lines
891 B
PHP
<?php
|
|
|
|
if(!empty($_SERVER['GATEWAY_INTERFACE'])){
|
|
error_log("should not be called from apache!");
|
|
exit;
|
|
}
|
|
error_reporting(E_ALL);
|
|
|
|
require_once(dirname(dirname(dirname(__FILE__))).'/config.php'); // global moodle config file.
|
|
|
|
require_once($CFG->dirroot . '/course/lib.php');
|
|
require_once($CFG->dirroot . '/lib/moodlelib.php');
|
|
require_once($CFG->dirroot . '/lib/datalib.php');
|
|
require_once($CFG->dirroot . "/enrol/" . $CFG->enrol . "/enrol.php");
|
|
|
|
// ensure errors are well explained
|
|
$CFG->debug=10;
|
|
// update enrolments -- these handlers should autocreate courses if required
|
|
$enrol = new enrolment_plugin();
|
|
$enrol->sync_enrolments('student', true);
|
|
//$enrol->sync_enrolments('teacher', true);
|
|
|
|
// sync metacourses
|
|
if (function_exists('sync_metacourses')) {
|
|
sync_metacourses();
|
|
}
|
|
|
|
?>
|