-
Notifications
You must be signed in to change notification settings - Fork 0
/
converttogroup.php
209 lines (165 loc) · 7.55 KB
/
converttogroup.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?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/>.
/**
* Allows teachers to convert participants of an exammanagement to a moodle group.
*
* @package mod_exammanagement
* @copyright 2022 coactum GmbH
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_exammanagement\local\helper;
require(__DIR__ . '/../../config.php');
require_once(__DIR__ . '/lib.php');
// Course_module ID, or ...
$id = optional_param('id', 0, PARAM_INT);
// ... module instance id - should be named as the first character of the module.
$e = optional_param('e', 0, PARAM_INT);
// Set the basic variables $course, $cm and $moduleinstance.
if ($id) {
[$course, $cm] = get_course_and_cm_from_cmid($id, 'exammanagement');
$moduleinstance = $DB->get_record('exammanagement', ['id' => $cm->instance], '*', MUST_EXIST);
} else {
throw new moodle_exception('missingparameter');
}
// Check if course module, course and course section exist.
if (!$cm) {
throw new moodle_exception(get_string('incorrectmodule', 'exammanagement'));
} else if (!$course) {
throw new moodle_exception(get_string('incorrectcourseid', 'exammanagement'));
} else if (!$coursesections = $DB->get_record("course_sections", ["id" => $cm->section])) {
throw new moodle_exception(get_string('incorrectmodule', 'exammanagement'));
}
// Check login and capability.
require_login($course, true, $cm);
$context = context_module::instance($cm->id);
require_capability('mod/exammanagement:viewinstance', $context);
// Get global and construct helper objects.
global $OUTPUT, $PAGE;
// If user has not entered the correct password: redirect to check password page.
if (isset($moduleinstance->password) &&
(!isset($SESSION->loggedInExamOrganizationId) || $SESSION->loggedInExamOrganizationId !== $id)) {
redirect(new moodle_url('/mod/exammanagement/checkpassword.php', ['id' => $id]), null, null, null);
}
// Check if requirements are met.
if (helper::isexamdatadeleted($moduleinstance)) {
redirect(new moodle_url('/mod/exammanagement/view.php#beforeexam', ['id' => $id]),
get_string('err_examdata_deleted', 'mod_exammanagement'), null, 'error');
} else if (!helper::getparticipantscount($moduleinstance)) {
redirect(new moodle_url('/mod/exammanagement/view.php#forexam', ['id' => $id]),
get_string('no_participants_added', 'mod_exammanagement'), null, 'error');
}
$moodleparticipants = helper::getexamparticipants($moduleinstance, ['mode' => 'moodle'], ['matrnr', 'profile', 'groups']);
$nonemoodleparticipants = helper::getexamparticipants($moduleinstance, ['mode' => 'nonmoodle'], ['matrnr']);
// Instantiate form.
require_once($CFG->dirroot . '/mod/exammanagement/classes/forms/converttogroup_form.php');
$mform = new mod_exammanagement_converttogroup_form(null, [
'id' => $id,
'e' => $e,
'moodleparticipants' => $moodleparticipants,
'nonemoodleparticipants' => $nonemoodleparticipants,
'courseid' => $course->id,
]);
// Form processing and displaying is done here.
if ($mform->is_cancelled()) { // Handle form cancel operation, if cancel button is present on form.
redirect(new moodle_url('/mod/exammanagement/viewparticipants.php', ['id' => $id]),
get_string('operation_canceled', 'mod_exammanagement'), null, 'warning');
} else if ($fromform = $mform->get_data()) { // In this case you process validated data.
$participantsids = helper::filtercheckedparticipants($fromform)['participants'];
$countsuccess = 0;
$countfailed = 0;
$newgroupid = false;
if (!empty($participantsids)) {
require_once($CFG->dirroot . '/group/lib.php');
if ($fromform->groups === 'new_group') {
$data = new stdClass();
$data->courseid = $course->id;
$data->name = $fromform->groupname;
$data->description = $fromform->groupdescription;
$data->descriptionformat = FORMAT_HTML;
$newgroupid = groups_create_group($data);
foreach ($participantsids as $moodleuserid) {
if (groups_add_member($newgroupid, $moodleuserid)) {
$countsuccess += 1;
} else {
$countfailed += 1;
}
}
} else {
foreach ($participantsids as $moodleuserid) {
if (groups_add_member($fromform->groups, $moodleuserid)) {
$countsuccess += 1;
} else {
$countfailed += 1;
}
}
}
}
if ((($fromform->groups === 'new_group' && $newgroupid) || $fromform->groups !== 'new_group')
&& $countfailed === 0 && $countsuccess > 0) {
redirect(new moodle_url('/mod/exammanagement/viewparticipants.php', ['id' => $id]),
get_string('operation_successfull', 'mod_exammanagement'), null, 'success');
} else {
redirect(new moodle_url('/mod/exammanagement/viewparticipants.php', ['id' => $id]),
get_string('alteration_failed', 'mod_exammanagement'), null, 'error');
}
} else {
// This branch is executed if the form is submitted but the data doesn't validate and the form should be redisplayed
// or on the first display of the form.
// Set $PAGE.
$plugintype = get_string('modulename', 'mod_exammanagement');
$modulename = format_string($moduleinstance->name, true, [
'context' => $context,
]);
$title = get_string('converttogroup', 'mod_exammanagement');
$PAGE->set_url('/mod/exammanagement/converttogroup.php', ['id' => $id]);
$PAGE->navbar->add($title);
$PAGE->set_title($plugintype . ': ' . $modulename . ' - ' . $title);
$PAGE->set_heading($course->fullname);
if ($CFG->branch < 400) {
$PAGE->force_settings_menu();
}
// Output header.
echo $OUTPUT->header();
if ($CFG->branch < 400) {
echo $OUTPUT->heading($modulename);
if ($moduleinstance->intro) {
echo $OUTPUT->box(format_module_intro('exammanagement', $moduleinstance, $cm->id), 'generalbox', 'intro');
}
}
// Output heading.
if (get_config('mod_exammanagement', 'enablehelptexts')) {
echo $OUTPUT->heading($title . ' ' . $OUTPUT->help_icon('converttogroup', 'mod_exammanagement', ''), 4);
} else {
echo $OUTPUT->heading($title, 4);
}
// Output description.
echo '<p>' . get_string("convert_to_group_str", "mod_exammanagement", ['systemname' => helper::getmoodlesystemname()]) . '</p>';
// Output alerts.
// Set default data.
// Set data if checkboxes should be checked.
// SetDefault in the form is much more time consuming for big amount of participants.
$defaultvalues = ['id' => $id];
if (isset($moodleparticipants)) {
foreach ($moodleparticipants as $participant) {
$defaultvalues['participants[' . $participant->moodleuserid . ']'] = true;
}
}
$mform->set_data($defaultvalues);
// Display form.
$mform->display();
// Finish the page.
echo $OUTPUT->footer();
}