3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Provide interface for topics AJAX course formats
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once('../config.php');
27 require_once($CFG->dirroot
.'/course/lib.php');
29 // Initialise ALL the incoming parameters here, up front.
30 $courseid = required_param('courseId', PARAM_INT
);
31 $class = required_param('class', PARAM_ALPHA
);
32 $field = optional_param('field', '', PARAM_ALPHA
);
33 $instanceid = optional_param('instanceId', 0, PARAM_INT
);
34 $sectionid = optional_param('sectionId', 0, PARAM_INT
);
35 $beforeid = optional_param('beforeId', 0, PARAM_INT
);
36 $value = optional_param('value', 0, PARAM_INT
);
37 $column = optional_param('column', 0, PARAM_ALPHA
);
38 $id = optional_param('id', 0, PARAM_INT
);
39 $summary = optional_param('summary', '', PARAM_RAW
);
40 $sequence = optional_param('sequence', '', PARAM_SEQUENCE
);
41 $visible = optional_param('visible', 0, PARAM_INT
);
42 $pageaction = optional_param('action', '', PARAM_ALPHA
); // Used to simulate a DELETE command
44 $PAGE->set_url('/course/rest.php', array('courseId'=>$courseid,'class'=>$class));
46 //NOTE: when making any changes here please make sure it is using the same access control as course/mod.php !!
50 // Authorise the user and verify some incoming data
51 if (!$course = $DB->get_record('course', array('id'=>$courseid))) {
52 error_log('AJAX commands.php: Course does not exist');
56 if (empty($CFG->enablecourseajax
)) {
57 error_log('Course AJAX not allowed');
63 // OK, now let's process the parameters and do stuff
64 // MDL-10221 the DELETE method is not allowed on some web servers, so we simulate it with the action URL param
65 $requestmethod = $_SERVER['REQUEST_METHOD'];
66 if ($pageaction == 'DELETE') {
67 $requestmethod = 'DELETE';
70 switch($requestmethod) {
79 require_login($course);
80 $coursecontext = get_context_instance(CONTEXT_COURSE
, $course->id
);
82 if (!$DB->record_exists('course_sections', array('course'=>$course->id
, 'section'=>$id))) {
83 error_log('AJAX commands.php: Bad Section ID '.$id);
89 require_capability('moodle/course:sectionvisibility', $coursecontext);
90 set_section_visible($course->id
, $id, $value);
94 require_capability('moodle/course:update', $coursecontext);
95 move_section_to($course, $id, $value);
98 rebuild_course_cache($course->id
);
102 if (!$cm = get_coursemodule_from_id('', $id, $course->id
)) {
103 error_log('AJAX commands.php: Bad course module ID '.$id);
106 require_login($course, false, $cm);
107 $modcontext = get_context_instance(CONTEXT_MODULE
, $cm->id
);
110 require_capability('moodle/course:activityvisibility', $modcontext);
111 set_coursemodule_visible($cm->id
, $value);
115 require_capability('moodle/course:manageactivities', $modcontext);
116 set_coursemodule_groupmode($cm->id
, $value);
120 require_capability('moodle/course:manageactivities', $modcontext);
121 if ($cm->indent
> 0) {
123 $DB->update_record('course_modules', $cm);
128 require_capability('moodle/course:manageactivities', $modcontext);
130 $DB->update_record('course_modules', $cm);
134 require_capability('moodle/course:manageactivities', $modcontext);
135 if (!$section = $DB->get_record('course_sections', array('course'=>$course->id
, 'section'=>$sectionid))) {
136 error_log('AJAX commands.php: Bad section ID '.$sectionid);
141 $beforemod = get_coursemodule_from_id('', $beforeid, $course->id
);
142 $beforemod = $DB->get_record('course_modules', array('id'=>$beforeid));
147 if (debugging('',DEBUG_DEVELOPER
)) {
148 error_log(serialize($beforemod));
151 moveto_module($cm, $section, $beforemod);
154 rebuild_course_cache($course->id
);
160 require_login($course);
161 $coursecontext = get_context_instance(CONTEXT_COURSE
, $course->id
);
162 require_capability('moodle/course:setcurrentsection', $coursecontext);
163 course_set_marker($course->id
, $value);
177 if (!$cm = get_coursemodule_from_id('', $id, $course->id
)) {
178 error_log('AJAX rest.php: Bad course module ID '.$id);
181 require_login($course, false, $cm);
182 $modcontext = get_context_instance(CONTEXT_MODULE
, $cm->id
);
183 require_capability('moodle/course:manageactivities', $modcontext);
184 $modlib = "$CFG->dirroot/mod/$cm->modname/lib.php";
186 if (file_exists($modlib)) {
187 include_once($modlib);
189 error_log("Ajax rest.php: This module is missing mod/$cm->modname/lib.php");
192 $deleteinstancefunction = $cm->modname
."_delete_instance";
194 // Run the module's cleanup funtion.
195 if (!$deleteinstancefunction($cm->instance
)) {
196 error_log("Ajax rest.php: Could not delete the $cm->modname $cm->name (instance)");
200 // remove all module files in case modules forget to do that
201 $fs = get_file_storage();
202 $fs->delete_area_files($modcontext->id
);
204 if (!delete_course_module($cm->id
)) {
205 error_log("Ajax rest.php: Could not delete the $cm->modname $cm->name (coursemodule)");
207 // Remove the course_modules entry.
208 if (!delete_mod_from_section($cm->id
, $cm->section
)) {
209 error_log("Ajax rest.php: Could not delete the $cm->modname $cm->name from section");
212 // Trigger a mod_deleted event with information about this module.
213 $eventdata = new stdClass();
214 $eventdata->modulename
= $cm->modname
;
215 $eventdata->cmid
= $cm->id
;
216 $eventdata->courseid
= $course->id
;
217 $eventdata->userid
= $USER->id
;
218 events_trigger('mod_deleted', $eventdata);
220 rebuild_course_cache($course->id
);
222 add_to_log($courseid, "course", "delete mod",
223 "view.php?id=$courseid",
224 "$cm->modname $cm->instance", $cm->id
);