2 // Provide interface for topics AJAX course formats
4 require_once('../config.php');
5 require_once($CFG->dirroot
.'/course/lib.php');
6 require_once($CFG->libdir
.'/pagelib.php');
7 require_once($CFG->libdir
.'/blocklib.php');
10 // Initialise ALL the incoming parameters here, up front.
11 $courseid = required_param('courseId', PARAM_INT
);
12 $class = required_param('class', PARAM_ALPHA
);
13 $field = optional_param('field', '', PARAM_ALPHA
);
14 $instanceid = optional_param('instanceId', 0, PARAM_INT
);
15 $sectionid = optional_param('sectionId', 0, PARAM_INT
);
16 $beforeid = optional_param('beforeId', 0, PARAM_INT
);
17 $value = optional_param('value', 0, PARAM_INT
);
18 $column = optional_param('column', 0, PARAM_ALPHA
);
19 $id = optional_param('id', 0, PARAM_INT
);
20 $summary = optional_param('summary', '', PARAM_RAW
);
21 $sequence = optional_param('sequence', '', PARAM_SEQUENCE
);
22 $visible = optional_param('visible', 0, PARAM_INT
);
25 // Authorise the user and verify some incoming data
26 if (!$course = get_record('course', 'id', $courseid)) {
27 error_log('AJAX commands.php: Course does not exist');
31 $PAGE = page_create_object(PAGE_COURSE_VIEW
, $course->id
);
32 $pageblocks = blocks_setup($PAGE, BLOCKS_PINNED_BOTH
);
34 if (!empty($instanceid)) {
35 $blockinstance = blocks_find_instance($instanceid, $pageblocks);
36 if (!$blockinstance ||
$blockinstance->pageid
!= $course->id
37 ||
$blockinstance->pagetype
!= 'course-view') {
38 error_log('AJAX commands.php: Bad block ID '.$instanceid);
43 $context = get_context_instance(CONTEXT_COURSE
, $course->id
);
44 require_login($course->id
);
45 require_capability('moodle/course:update', $context);
49 // OK, now let's process the parameters and do stuff
50 switch($_SERVER['REQUEST_METHOD']) {
58 blocks_execute_action($PAGE, $pageblocks, 'toggle', $blockinstance);
61 case 'position': // Misleading case. Should probably call it 'move'.
62 // We want to move the block around. This means changing
63 // the column (position field) and/or block sort order
65 blocks_move_block($PAGE, $blockinstance, $column, $value);
72 if (!record_exists('course_sections','course',$course->id
,'section',$id)) {
73 error_log('AJAX commands.php: Bad Section ID '.$id);
79 set_section_visible($course->id
, $id, $value);
83 move_section_to($course, $id, $value);
86 rebuild_course_cache($course->id
);
90 if (!$mod = get_record('course_modules', 'id', $id, 'course', $course->id
)) {
91 error_log('AJAX commands.php: Bad course module ID '.$id);
96 set_coursemodule_visible($mod->id
, $value);
100 set_coursemodule_groupmode($mod->id
, $value);
104 if ($mod->indent
> 0) {
106 update_record('course_modules', $mod);
112 update_record('course_modules', $mod);
116 if (!$section = get_record('course_sections','course',$course->id
,'section',$sectionid)) {
117 error_log('AJAX commands.php: Bad section ID '.$sectionid);
122 $beforemod = get_record('course_modules', 'id', $beforeid);
127 if (debugging('',DEBUG_DEVELOPER
)) {
128 error_log(serialize($beforemod));
131 moveto_module($mod, $section, $beforemod);
134 rebuild_course_cache($course->id
);
140 $newcourse = new object;
141 $newcourse->id
= $course->id
;
142 $newcourse->marker
= $value;
143 if (!update_record('course',$newcourse)) {
144 error_log('AJAX commands.php: Failed to update course marker for course '.$newcourse->id
);
156 blocks_execute_action($PAGE, $pageblocks, 'delete', $blockinstance);
160 if (!$cm = get_record('course_modules', 'id', $id, 'course', $course->id
)) {
161 error_log('AJAX rest.php: Bad course module ID '.$id);
164 if (!$mod = get_record('modules', 'id', $cm->module
)) {
165 error_log('AJAX rest.php: Bad module ID '.$cm->module
);
168 $mod->name
= clean_param($mod->name
, PARAM_SAFEDIR
); // For safety
169 $modlib = "$CFG->dirroot/mod/$mod->name/lib.php";
171 if (file_exists($modlib)) {
172 include_once($modlib);
174 error_log("Ajax rest.php: This module is missing important code ($modlib)");
177 $deleteinstancefunction = $mod->name
."_delete_instance";
179 // Run the module's cleanup funtion.
180 if (!$deleteinstancefunction($cm->instance
)) {
181 error_log("Ajax rest.php: Could not delete the $mod->name (instance)");
184 // Remove the course_modules entry.
185 if (!delete_course_module($cm->id
)) {
186 error_log("Ajax rest.php: Could not delete the $mod->modulename (coursemodule)");
190 rebuild_course_cache($course->id
);
192 add_to_log($courseid, "course", "delete mod",
193 "view.php?id=$courseid",
194 "$mod->name $cm->instance", $cm->id
);