-
Notifications
You must be signed in to change notification settings - Fork 4
/
view.php
executable file
·135 lines (113 loc) · 4.59 KB
/
view.php
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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.
//
// Moodle 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/>.
/**
* Prints an instance of mod_mooduell.
*
* @package mod_mooduell
* @copyright 2020 Wunderbyte GmbH <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_mooduell\manage_tokens;
use mod_mooduell\mooduell;
use mod_mooduell\event\game_finished;
use mod_mooduell\output\overview_student;
use mod_mooduell\output\overview_teacher;
require_once(__DIR__ . '/../../config.php');
require_once(__DIR__ . '/lib.php');
defined('MOODLE_INTERNAL') || die();
global $CFG, $PAGE, $USER;
require_once("{$CFG->dirroot}/mod/mooduell/classes/mooduell.php");
require_once("{$CFG->dirroot}/course/moodleform_mod.php");
$id = required_param('id', PARAM_INT);
$action = optional_param('action', '', PARAM_RAW);
$gameid = optional_param('gameid', '', PARAM_INT);
$out = '';
// We don't need it now, but we might in the future.
$inline = false;
$mooduell = new mooduell($id);
require_login($mooduell->course, true, $mooduell->cm);
$context = $mooduell->context;
$pagename = null;
$mooduell->view_page();
// Event debugging - will be triggered by the button in classes/mooduell.php.
// Or by setting the event param in the URL.
$triggeredevent = optional_param('triggered_event', null, PARAM_RAW);
switch ($triggeredevent) {
case 'game_finished':
$event = game_finished::create(['context' => $context, 'objectid' => $mooduell->cm->id]);
$event->trigger();
break;
case 'course_module_created':
manage_tokens::generate_tokens_for_all_instance_users($id);
break;
case 'user_enrolment_created':
$debuguserid = optional_param('debuguserid', $USER->id, PARAM_INT);
manage_tokens::generate_token_for_user($debuguserid);
break;
}
// End of event debugging.
$output = $PAGE->get_renderer('mod_mooduell');
if (!$inline) {
$out .= $output->header();
}
// Use the view.php for different actions and views.
switch ($action) {
case null:
break;
case 'delete':
// This check is not really necessary.
if (has_capability('mod/mooduell:editgames', $context)) {
$PAGE->set_url('/mod/mooduell/view.php', ['id' => $id]);
$mooduell->execute_action($action, $gameid);
}
break;
case 'viewquestions':
$pagename = 'questions';
break;
case 'downloadhighscores':
$pagename = 'downloadhighscores';
}
// The following part only applies to Moodle 3.11 and later.
if (!$inline && $CFG->version >= 2021051700) {
$cminfo = cm_info::create($mooduell->cm, $USER->id);
// Fetch completion information.
$completiondetails = \core_completion\cm_completion_details::get_instance($cminfo, $USER->id);
$activitydates = \core\activity_dates::get_dates_for_module($cminfo, $USER->id); // Fetch activity dates.
$out .= $OUTPUT->heading(format_string($mooduell->cm->name), 2, null);
if ($CFG->version < 2023100900) {
$out .= $OUTPUT->activity_information($cminfo, $completiondetails, $activitydates);
} else {
// Moodle 4.3 refactored "activity_information" this way.
$activitycompletion = new \core_course\output\activity_completion($cminfo, $completiondetails);
$activitycompletiondata = (array) $activitycompletion->export_for_template($output);
$activitydates = new \core_course\output\activity_dates($activitydates);
$activitydatesdata = (array) $activitydates->export_for_template($output);
$data = array_merge($activitycompletiondata, $activitydatesdata);
$out .= $output->render_from_template('core_course/activity_info', $data);
}
}
if (!has_capability('mod/mooduell:viewstatistics', $context)) {
$pagename = 'studentsview';
$overview = new overview_student($mooduell);
$out .= $output->render_overview_students($overview);
} else {
$overview = new overview_teacher($mooduell);
$out .= $output->render_overview_teachers($overview);
}
if (!$inline) {
$out .= $output->footer();
}
echo $out;