weekly back-to-dev release 4.5dev
[moodle.git] / course / bulkcompletion.php
blob019888b76d1c4921a2e54c1d6173aa885f7ace76
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Bulk activity completion selection
20 * @package core_completion
21 * @category completion
22 * @copyright 2017 Adrian Greeve
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once(__DIR__.'/../config.php');
27 require_once($CFG->dirroot.'/course/lib.php');
28 require_once($CFG->libdir.'/completionlib.php');
30 $id = required_param('id', PARAM_INT); // Course id.
31 $cmids = optional_param_array('cmid', [], PARAM_INT);
33 // Perform some basic access control checks.
34 if ($id) {
36 if ($id == SITEID) {
37 // Don't allow editing of 'site course' using this form.
38 throw new \moodle_exception('cannoteditsiteform');
41 if (!$course = $DB->get_record('course', array('id' => $id))) {
42 throw new \moodle_exception('invalidcourseid');
44 require_login($course);
46 } else {
47 require_login();
48 throw new \moodle_exception('needcourseid');
51 // Set up the page.
52 navigation_node::override_active_url(new moodle_url('/course/completion.php', array('id' => $course->id)));
53 $PAGE->set_course($course);
54 $PAGE->set_url('/course/bulkcompletion.php', array('id' => $course->id));
55 $PAGE->set_title($course->shortname);
56 $PAGE->set_heading($course->fullname);
57 $PAGE->set_pagelayout('admin');
59 // Check access.
60 if (!core_completion\manager::can_edit_bulk_completion($id)) {
61 require_capability('moodle/course:manageactivities', context_course::instance($course->id));
64 // Get all that stuff I need for the renderer.
65 $manager = new \core_completion\manager($id);
66 $bulkcompletiondata = $manager->get_activities_and_headings();
68 $renderer = $PAGE->get_renderer('core_course', 'bulk_activity_completion');
70 // Print the form.
71 echo $OUTPUT->header();
73 $actionbar = new \core_course\output\completion_action_bar($course->id, $PAGE->url);
74 echo $renderer->render_course_completion_action_bar($actionbar);
76 $PAGE->requires->js_call_amd('core_form/changechecker', 'watchFormById', ['theform']);
78 echo $renderer->bulkcompletion($bulkcompletiondata);
80 echo $OUTPUT->footer();