-
Notifications
You must be signed in to change notification settings - Fork 182
/
questions.php
417 lines (359 loc) · 17.4 KB
/
questions.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<?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/>.
/**
* This page handles the main question editing screen.
*
* @package mod_questionnaire
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright 2016 Mike Churchward (mike.churchward@poetopensource.org)
*/
require_once("../../config.php");
require_once($CFG->dirroot.'/mod/questionnaire/questionnaire.class.php');
require_once($CFG->dirroot.'/mod/questionnaire/classes/question/question.php'); // Needed for question type constants.
$id = required_param('id', PARAM_INT); // Course module ID.
$action = optional_param('action', 'main', PARAM_ALPHA); // Screen.
$qid = optional_param('qid', 0, PARAM_INT); // Question id.
$moveq = optional_param('moveq', 0, PARAM_INT); // Question id to move.
$delq = optional_param('delq', 0, PARAM_INT); // Question id to delete.
$qtype = optional_param('type_id', 0, PARAM_INT); // Question type.
$currentgroupid = optional_param('group', 0, PARAM_INT); // Group id.
if (! $cm = get_coursemodule_from_id('questionnaire', $id)) {
throw new \moodle_exception('invalidcoursemodule', 'mod_questionnaire');
}
if (! $course = $DB->get_record("course", array("id" => $cm->course))) {
throw new \moodle_exception('coursemisconf', 'mod_questionnaire');
}
if (! $questionnaire = $DB->get_record("questionnaire", array("id" => $cm->instance))) {
throw new \moodle_exception('invalidcoursemodule', 'mod_questionnaire');
}
require_course_login($course, true, $cm);
$context = context_module::instance($cm->id);
$url = new moodle_url($CFG->wwwroot.'/mod/questionnaire/questions.php');
$url->param('id', $id);
if ($qid) {
$url->param('qid', $qid);
}
$PAGE->set_url($url);
$PAGE->set_context($context);
$questionnaire = new questionnaire($course, $cm, 0, $questionnaire);
// Add renderer and page objects to the questionnaire object for display use.
$questionnaire->add_renderer($PAGE->get_renderer('mod_questionnaire'));
$questionnaire->add_page(new \mod_questionnaire\output\questionspage());
if (!$questionnaire->capabilities->editquestions) {
throw new \moodle_exception('nopermissions', 'mod_questionnaire');
}
$questionnairehasdependencies = $questionnaire->has_dependencies();
$dependants = null;
if (!isset($SESSION->questionnaire)) {
$SESSION->questionnaire = new stdClass();
}
$SESSION->questionnaire->current_tab = 'questions';
$reload = false;
$sid = $questionnaire->survey->id;
// Process form data.
// Delete question button has been pressed in questions_form AND deletion has been confirmed on the confirmation page.
if ($delq) {
$qid = $delq;
$sid = $questionnaire->survey->id;
$questionnaireid = $questionnaire->id;
// Need to reload questions before setting deleted question to 'y'.
$questions = $DB->get_records('questionnaire_question', ['surveyid' => $sid, 'deleted' => 'n'], 'id') ?? [];
$DB->set_field('questionnaire_question', 'deleted', 'y', ['id' => $qid, 'surveyid' => $sid]);
// Delete all dependency records for this question.
questionnaire_delete_dependencies($qid);
// Just in case the page is refreshed (F5) after a question has been deleted.
if (isset($questions[$qid])) {
$select = 'surveyid = '.$sid.' AND deleted = \'n\' AND position > '.
$questions[$qid]->position;
} else {
redirect($CFG->wwwroot.'/mod/questionnaire/questions.php?id='.$questionnaire->cm->id);
}
if ($records = $DB->get_records_select('questionnaire_question', $select, null, 'position ASC')) {
foreach ($records as $record) {
$DB->set_field('questionnaire_question', 'position', $record->position - 1, array('id' => $record->id));
}
}
// Delete section breaks without asking for confirmation.
// No need to delete responses to those "question types" which are not real questions.
if (!$questionnaire->questions[$qid]->supports_responses()) {
$reload = true;
} else {
// Delete responses to that deleted question.
questionnaire_delete_responses($qid);
// If no questions left in this questionnaire, remove all responses.
if ($DB->count_records('questionnaire_question', ['surveyid' => $sid, 'deleted' => 'n']) == 0) {
$DB->delete_records('questionnaire_response', ['questionnaireid' => $qid]);
}
}
// Log question deleted event.
$context = context_module::instance($questionnaire->cm->id);
$questiontype = \mod_questionnaire\question\question::qtypename($questionnaire->questions[$qid]->type_id);
$params = array(
'context' => $context,
'courseid' => $questionnaire->course->id,
'other' => array('questiontype' => $questiontype)
);
$event = \mod_questionnaire\event\question_deleted::create($params);
$event->trigger();
if ($questionnairehasdependencies) {
$SESSION->questionnaire->validateresults = questionnaire_check_page_breaks($questionnaire);
}
$reload = true;
}
if ($action == 'main') {
$questionsform = new \mod_questionnaire\questions_form('questions.php', $moveq);
$sdata = clone($questionnaire->survey);
$sdata->sid = $questionnaire->survey->id;
$sdata->id = $cm->id;
if (!empty($questionnaire->questions)) {
$pos = 1;
foreach ($questionnaire->questions as $qidx => $question) {
$sdata->{'pos_'.$qidx} = $pos;
$pos++;
}
}
$questionsform->set_data($sdata);
if ($questionsform->is_cancelled()) {
// Switch to main screen.
$action = 'main';
redirect($CFG->wwwroot.'/mod/questionnaire/questions.php?id='.$questionnaire->cm->id);
$reload = true;
}
if ($qformdata = $questionsform->get_data()) {
// Quickforms doesn't return values for 'image' input types using 'exportValue', so we need to grab
// it from the raw submitted data.
$exformdata = data_submitted();
if (isset($exformdata->movebutton)) {
$qformdata->movebutton = $exformdata->movebutton;
} else if (isset($exformdata->moveherebutton)) {
$qformdata->moveherebutton = $exformdata->moveherebutton;
} else if (isset($exformdata->editbutton)) {
$qformdata->editbutton = $exformdata->editbutton;
} else if (isset($exformdata->removebutton)) {
$qformdata->removebutton = $exformdata->removebutton;
} else if (isset($exformdata->requiredbutton)) {
$qformdata->requiredbutton = $exformdata->requiredbutton;
}
// Insert a section break.
if (isset($qformdata->removebutton)) {
// Need to use the key, since IE returns the image position as the value rather than the specified
// value in the <input> tag.
$qid = key($qformdata->removebutton);
$qtype = $questionnaire->questions[$qid]->type_id;
// Delete section breaks without asking for confirmation.
if ($qtype == QUESPAGEBREAK) {
redirect($CFG->wwwroot.'/mod/questionnaire/questions.php?id='.$questionnaire->cm->id.'&delq='.$qid);
}
$action = "confirmdelquestion";
if ($questionnairehasdependencies) {
// Important: due to possibly multiple parents per question
// just remove the dependency and inform the user about it.
$dependants = $questionnaire->get_all_dependants($qid);
if (!(empty($dependants->directs) && empty($dependants->indirects))) {
$action = "confirmdelquestionparent";
}
}
} else if (isset($qformdata->editbutton)) {
// Switch to edit question screen.
$action = 'question';
// Need to use the key, since IE returns the image position as the value rather than the specified
// value in the <input> tag.
$qid = key($qformdata->editbutton);
$reload = true;
} else if (isset($qformdata->requiredbutton)) {
// Need to use the key, since IE returns the image position as the value rather than the specified
// value in the <input> tag.
$qid = key($qformdata->requiredbutton);
if ($questionnaire->questions[$qid]->required()) {
$questionnaire->questions[$qid]->set_required(false);
} else {
$questionnaire->questions[$qid]->set_required(true);
}
$reload = true;
} else if (isset($qformdata->addqbutton)) {
if ($qformdata->type_id == QUESPAGEBREAK) { // Adding section break is handled right away....
$questionrec = new stdClass();
$questionrec->surveyid = $qformdata->sid;
$questionrec->type_id = QUESPAGEBREAK;
$questionrec->content = 'break';
$question = \mod_questionnaire\question\question::question_builder(QUESPAGEBREAK);
$question->add($questionrec);
$reload = true;
} else {
// Switch to edit question screen.
$action = 'question';
$qtype = $qformdata->type_id;
$qid = 0;
$reload = true;
}
} else if (isset($qformdata->movebutton)) {
// Nothing I do will seem to reload the form with new data, except for moving away from the page, so...
redirect($CFG->wwwroot.'/mod/questionnaire/questions.php?id='.$questionnaire->cm->id.
'&moveq='.key($qformdata->movebutton));
$reload = true;
} else if (isset($qformdata->moveherebutton)) {
// Need to use the key, since IE returns the image position as the value rather than the specified
// value in the <input> tag.
// No need to move question if new position = old position!
$qpos = key($qformdata->moveherebutton);
if ($qformdata->moveq != $qpos) {
$questionnaire->move_question($qformdata->moveq, $qpos);
}
if ($questionnairehasdependencies) {
$SESSION->questionnaire->validateresults = questionnaire_check_page_breaks($questionnaire);
}
// Nothing I do will seem to reload the form with new data, except for moving away from the page, so...
redirect($CFG->wwwroot.'/mod/questionnaire/questions.php?id='.$questionnaire->cm->id);
$reload = true;
} else if (isset($qformdata->validate)) {
// Validates page breaks for depend questions.
$SESSION->questionnaire->validateresults = questionnaire_check_page_breaks($questionnaire);
$reload = true;
}
}
} else if ($action == 'question') {
$question = questionnaire_prep_for_questionform($questionnaire, $qid, $qtype);
$questionsform = new \mod_questionnaire\edit_question_form('questions.php');
$questionsform->set_data($question);
if ($questionsform->is_cancelled()) {
// Switch to main screen.
$action = 'main';
$reload = true;
} else if ($qformdata = $questionsform->get_data()) {
// Saving question data.
if (isset($qformdata->makecopy)) {
$qformdata->qid = 0;
}
$question->form_update($qformdata, $questionnaire);
// Make these field values 'sticky' for further new questions.
if (!isset($qformdata->required)) {
$qformdata->required = 'n';
}
questionnaire_check_page_breaks($questionnaire);
$SESSION->questionnaire->required = $qformdata->required;
$SESSION->questionnaire->type_id = $qformdata->type_id;
// Switch to main screen.
$action = 'main';
$reload = true;
}
// Log question created event.
if (isset($qformdata)) {
$context = context_module::instance($questionnaire->cm->id);
$questiontype = \mod_questionnaire\question\question::qtypename($qformdata->type_id);
$params = array(
'context' => $context,
'courseid' => $questionnaire->course->id,
'other' => array('questiontype' => $questiontype)
);
$event = \mod_questionnaire\event\question_created::create($params);
$event->trigger();
}
$questionsform->set_data($question);
}
// Reload the form data if called for...
if ($reload) {
unset($questionsform);
$questionnaire = new questionnaire($course, $cm, $questionnaire->id, null);
// Add renderer and page objects to the questionnaire object for display use.
$questionnaire->add_renderer($PAGE->get_renderer('mod_questionnaire'));
$questionnaire->add_page(new \mod_questionnaire\output\questionspage());
if ($action == 'main') {
$questionsform = new \mod_questionnaire\questions_form('questions.php', $moveq);
$sdata = clone($questionnaire->survey);
$sdata->sid = $questionnaire->survey->id;
$sdata->id = $cm->id;
if (!empty($questionnaire->questions)) {
$pos = 1;
foreach ($questionnaire->questions as $qidx => $question) {
$sdata->{'pos_'.$qidx} = $pos;
$pos++;
}
}
$questionsform->set_data($sdata);
} else if ($action == 'question') {
$question = questionnaire_prep_for_questionform($questionnaire, $qid, $qtype);
$questionsform = new \mod_questionnaire\edit_question_form('questions.php');
$questionsform->set_data($question);
}
}
// Print the page header.
if ($action == 'question') {
if (isset($question->qid)) {
$streditquestion = get_string('editquestion', 'questionnaire', questionnaire_get_type($question->type_id));
} else {
$streditquestion = get_string('addnewquestion', 'questionnaire', questionnaire_get_type($question->type_id));
}
} else {
$streditquestion = get_string('managequestions', 'questionnaire');
}
$PAGE->set_title($streditquestion);
$PAGE->set_heading(format_string($course->fullname));
$PAGE->navbar->add($streditquestion);
echo $questionnaire->renderer->header();
require('tabs.php');
if ($action == "confirmdelquestion" || $action == "confirmdelquestionparent") {
$qid = key($qformdata->removebutton);
$question = $questionnaire->questions[$qid];
$qtype = $question->type_id;
// Count responses already saved for that question.
$countresps = 0;
if ($qtype != QUESSECTIONTEXT) {
$responsetable = $DB->get_field('questionnaire_question_type', 'response_table', array('typeid' => $qtype));
if (!empty($responsetable)) {
$countresps = $DB->count_records('questionnaire_'.$responsetable, array('question_id' => $qid));
}
}
// Needed to print potential media in question text.
// If question text is "empty", i.e. 2 non-breaking spaces were inserted, do not display any question text.
if ($question->content == '<p> </p>') {
$question->content = '';
}
$qname = '';
if ($question->name) {
$qname = ' ('.$question->name.')';
}
$num = get_string('position', 'questionnaire');
$pos = $question->position.$qname;
$msg = '<div class="warning centerpara"><p>'.get_string('confirmdelquestion', 'questionnaire', $pos).'</p>';
if ($countresps !== 0) {
$msg .= '<p>'.get_string('confirmdelquestionresps', 'questionnaire', $countresps).'</p>';
}
$msg .= '</div>';
$msg .= '<div class = "qn-container">'.$num.' '.$pos.'<div class="qn-question">'.$question->content.'</div></div>';
$args = "id={$questionnaire->cm->id}";
$urlno = new moodle_url("/mod/questionnaire/questions.php?{$args}");
$args .= "&delq={$qid}";
$urlyes = new moodle_url("/mod/questionnaire/questions.php?{$args}");
$buttonyes = new single_button($urlyes, get_string('yes'));
$buttonno = new single_button($urlno, get_string('no'));
if ($action == "confirmdelquestionparent") {
$strnum = get_string('position', 'questionnaire');
$qid = key($qformdata->removebutton);
if ($dependants) {
// Show the dependencies and inform about the dependencies to be removed.
// Split dependencies in direct and indirect ones to separate for the confirm-dialogue.
// Only direct ones will be deleted. List direct dependencies.
$msg .= $questionnaire->renderer->dependency_warnings($dependants->directs, 'directwarnings', $strnum);
// List indirect dependencies.
$msg .= $questionnaire->renderer->dependency_warnings($dependants->indirects, 'indirectwarnings', $strnum);
}
}
$questionnaire->page->add_to_page('formarea', $questionnaire->renderer->confirm($msg, $buttonyes, $buttonno));
} else {
$questionnaire->page->add_to_page('formarea', $questionsform->render());
}
echo $questionnaire->renderer->render($questionnaire->page);
echo $questionnaire->renderer->footer();