MDL-81717 h5p: Improve robustness content type fetching
[moodle.git] / mod / workshop / toolbox.php
blob38958bcafe566f0aeb2ce86a7536f9ba68074c02
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
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.
9 //
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/>.
18 /**
19 * Various workshop maintainance utilities
21 * @package mod_workshop
22 * @copyright 2010 David Mudrak <david.mudrak@gmail.com>
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require(__DIR__.'/../../config.php');
27 require_once(__DIR__.'/locallib.php');
29 $id = required_param('id', PARAM_INT); // course_module ID
30 $tool = required_param('tool', PARAM_ALPHA);
32 $cm = get_coursemodule_from_id('workshop', $id, 0, false, MUST_EXIST);
33 $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
34 $workshop = $DB->get_record('workshop', array('id' => $cm->instance), '*', MUST_EXIST);
36 require_login($course, false, $cm);
37 $workshop = new workshop($workshop, $cm, $course);
38 require_sesskey();
40 $params = array(
41 'context' => $workshop->context,
42 'courseid' => $course->id,
43 'other' => array('workshopid' => $workshop->id)
46 switch ($tool) {
47 case 'clearaggregatedgrades':
48 require_capability('mod/workshop:overridegrades', $workshop->context);
49 $workshop->clear_submission_grades();
50 $workshop->clear_grading_grades();
51 $event = \mod_workshop\event\assessment_evaluations_reset::create($params);
52 $event->trigger();
53 break;
55 case 'clearassessments':
56 require_capability('mod/workshop:overridegrades', $workshop->context);
57 $workshop->clear_assessments();
58 $event = \mod_workshop\event\assessments_reset::create($params);
59 $event->trigger();
60 break;
63 redirect($workshop->view_url());