-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoverrides_delete.php
More file actions
108 lines (89 loc) · 3.74 KB
/
overrides_delete.php
File metadata and controls
108 lines (89 loc) · 3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
// This file is part of mod_openbook for Moodle - http://moodle.org/
//
// It is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// It is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Displays a single mod_openbook instance
*
* @package mod_openbook
* @author University of Geneva, E-Learning Team
* @author Academic Moodle Cooperation {@link http://www.academic-moodle-cooperation.org}
* @copyright 2025 University of Geneva {@link http://www.unige.ch}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../../config.php');
require_once($CFG->dirroot . '/mod/openbook/locallib.php');
require_once(__DIR__ . '/overrides_form.php');
$id = required_param('id', PARAM_INT); // Course Module ID.
$overrideid = required_param('overrideid', PARAM_INT);
$confirm = optional_param('confirm', false, PARAM_BOOL);
$url = new moodle_url('/mod/openbook/overrides_delete.php', ['id' => $id, 'overrideid' => $overrideid]);
$cm = get_coursemodule_from_id('openbook', $id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', ['id' => $cm->course], '*', MUST_EXIST);
require_login($course, true, $cm);
$PAGE->set_url($url);
$context = context_module::instance($cm->id);
$backurl = new moodle_url('/mod/openbook/overrides.php', ['id' => $id]);
require_capability('mod/openbook:manageoverrides', $context);
$openbook = new openbook($cm, $course, $context);
$override = $openbook->override_get($overrideid);
if (!$override) {
redirect($backurl, 'Invalid override id');
}
if ($confirm) {
require_sesskey();
$openbook->override_delete($overrideid);
$eventparams = [
'context' => $context,
'other' => [
'openbook' => $openbook->get_instance()->id,
],
];
$eventparams['objectid'] = $override->id;
$eventparams['relateduserid'] = $override->userid;
$event = \mod_openbook\event\user_override_deleted::create($eventparams);
$event->trigger();
redirect($backurl, get_string('override:delete:success', 'mod_openbook'));
}
$pagetitle = strip_tags($course->shortname . ': ' . format_string($openbook->get_instance()->name));
// Print the page header.
$PAGE->set_pagelayout('admin');
$PAGE->set_title($pagetitle);
$PAGE->set_heading($course->fullname);
$PAGE->add_body_class('limitedwidth');
$activityheader = $PAGE->activityheader;
$activityheader->set_attrs([
'description' => '',
'hidecompletion' => true,
'title' => $activityheader->is_title_allowed() ? format_string(
$openbook->get_instance()->name,
true,
['context' => $context],
) : "",
]);
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('overrides', 'mod_assign'), 2);
$mode = $openbook->get_mode();
$confirmstrcontext = new stdClass();
$confirmstrcontext->userorgroup = get_string('user');
$user = $DB->get_record('user', ['id' => $override->userid]);
if ($user) {
$confirmstrcontext->fullname = fullname($user);
} else {
$confirmstrcontext->fullname = 'N/A';
}
$confirmstr = get_string('override:delete:ask', 'mod_openbook', $confirmstrcontext);
$confirmurl = new moodle_url($url, ['id' => $id, 'overrideid' => $overrideid, 'confirm' => 1, 'sesskey' => sesskey()]);
echo $OUTPUT->confirm($confirmstr, $confirmurl, $backurl);
echo $OUTPUT->footer();