Merge branch 'MDL-81457-main' of https://github.com/andrewnicols/moodle
[moodle.git] / mod / workshop / switchphase.php
blob74e36074ab32512ec21a63664853d2411acb4099
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 * Change the current phase of the workshop
21 * @package mod_workshop
22 * @copyright 2009 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 $cmid = required_param('cmid', PARAM_INT); // course module
30 $phase = required_param('phase', PARAM_INT); // the code of the new phase
31 $confirm = optional_param('confirm', false, PARAM_BOOL); // confirmation
33 $cm = get_coursemodule_from_id('workshop', $cmid, 0, false, MUST_EXIST);
34 $course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
35 $workshop = $DB->get_record('workshop', array('id' => $cm->instance), '*', MUST_EXIST);
36 $workshop = new workshop($workshop, $cm, $course);
38 $PAGE->set_url($workshop->switchphase_url($phase), array('cmid' => $cmid, 'phase' => $phase));
40 require_login($course, false, $cm);
41 require_capability('mod/workshop:switchphase', $PAGE->context);
43 if ($confirm) {
44 if (!confirm_sesskey()) {
45 throw new moodle_exception('confirmsesskeybad');
47 if (!$workshop->switch_phase($phase)) {
48 throw new \moodle_exception('errorswitchingphase', 'workshop', $workshop->view_url());
50 redirect($workshop->view_url());
53 $PAGE->set_title($workshop->name);
54 $PAGE->set_heading($course->fullname);
55 $PAGE->activityheader->set_attrs([
56 'hidecompletion' => true,
57 'description' => ''
58 ]);
59 $PAGE->navbar->add(get_string('switchingphase', 'workshop'));
61 $PAGE->set_secondary_active_tab("modulepage");
64 // Output starts here
66 echo $OUTPUT->header();
67 $continuebtn = new single_button(
68 new moodle_url($PAGE->url, array('confirm' => 1)),
69 get_string('continue'),
70 'post',
71 single_button::BUTTON_PRIMARY
73 $continuebtn->class .= ' mr-3';
74 echo $OUTPUT->confirm(get_string('switchphase' . $phase . 'info', 'workshop'),
75 $continuebtn, $workshop->view_url());
76 echo $OUTPUT->footer();