1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
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.
|
|
|
14 |
//
|
|
|
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/>.
|
|
|
17 |
|
|
|
18 |
/**
|
|
|
19 |
* Change the current phase of the workshop
|
|
|
20 |
*
|
|
|
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
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
require(__DIR__.'/../../config.php');
|
|
|
27 |
require_once(__DIR__.'/locallib.php');
|
|
|
28 |
|
|
|
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
|
|
|
32 |
|
|
|
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);
|
|
|
37 |
|
|
|
38 |
$PAGE->set_url($workshop->switchphase_url($phase), array('cmid' => $cmid, 'phase' => $phase));
|
|
|
39 |
|
|
|
40 |
require_login($course, false, $cm);
|
|
|
41 |
require_capability('mod/workshop:switchphase', $PAGE->context);
|
|
|
42 |
|
|
|
43 |
if ($confirm) {
|
|
|
44 |
if (!confirm_sesskey()) {
|
|
|
45 |
throw new moodle_exception('confirmsesskeybad');
|
|
|
46 |
}
|
|
|
47 |
if (!$workshop->switch_phase($phase)) {
|
|
|
48 |
throw new \moodle_exception('errorswitchingphase', 'workshop', $workshop->view_url());
|
|
|
49 |
}
|
|
|
50 |
redirect($workshop->view_url());
|
|
|
51 |
}
|
|
|
52 |
|
|
|
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'));
|
|
|
60 |
|
|
|
61 |
$PAGE->set_secondary_active_tab("modulepage");
|
|
|
62 |
|
|
|
63 |
//
|
|
|
64 |
// Output starts here
|
|
|
65 |
//
|
|
|
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
|
|
|
72 |
);
|
|
|
73 |
$continuebtn->class .= ' mr-3';
|
|
|
74 |
echo $OUTPUT->confirm(get_string('switchphase' . $phase . 'info', 'workshop'),
|
|
|
75 |
$continuebtn, $workshop->view_url());
|
|
|
76 |
echo $OUTPUT->footer();
|