3 // This file is part of Moodle - http://moodle.org/
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.
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.
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/>.
19 * This file is responsible for saving the results of a users survey and displaying
23 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require_once('../../config.php');
28 require_once('lib.php');
31 // Make sure this is a legitimate posting
33 if (!$formdata = data_submitted() or !confirm_sesskey()) {
34 print_error('cannotcallscript');
37 $id = required_param('id', PARAM_INT
); // Course Module ID
39 if (! $cm = get_coursemodule_from_id('survey', $id)) {
40 print_error('invalidcoursemodule');
43 if (! $course = $DB->get_record("course", array("id"=>$cm->course
))) {
44 print_error('coursemisconf');
47 $PAGE->set_url('/mod/survey/save.php', array('id'=>$id));
48 require_login($course, false, $cm);
50 $context = context_module
::instance($cm->id
);
51 require_capability('mod/survey:participate', $context);
53 if (! $survey = $DB->get_record("survey", array("id"=>$cm->instance
))) {
54 print_error('invalidsurveyid', 'survey');
58 'context' => $context,
59 'courseid' => $course->id
,
60 'other' => array('surveyid' => $survey->id
)
62 $event = \mod_survey\event\response_submitted
::create($params);
65 $strsurveysaved = get_string('surveysaved', 'survey');
67 $PAGE->set_title($strsurveysaved);
68 $PAGE->set_heading($course->fullname
);
69 echo $OUTPUT->header();
70 echo $OUTPUT->heading($survey->name
);
72 if (survey_already_done($survey->id
, $USER->id
)) {
73 notice(get_string("alreadysubmitted", "survey"), clean_param($_SERVER["HTTP_REFERER"], PARAM_LOCALURL
));
78 // Sort through the data and arrange it
79 // This is necessary because some of the questions
80 // may have two answers, eg Question 1 -> 1 and P1
84 foreach ($formdata as $key => $val) {
85 if ($key <> "userid" && $key <> "id") {
86 if ( substr($key,0,1) == "q") {
87 $key = clean_param(substr($key,1), PARAM_ALPHANUM
); // keep everything but the 'q', number or Pnumber
89 if ( substr($key,0,1) == "P") {
90 $realkey = (int) substr($key,1);
91 $answers[$realkey][1] = $val;
93 $answers[$key][0] = $val;
99 // Now store the data.
102 foreach ($answers as $key => $val) {
103 if ($key != 'sesskey') {
104 $newdata = new stdClass();
105 $newdata->time
= $timenow;
106 $newdata->userid
= $USER->id
;
107 $newdata->survey
= $survey->id
;
108 $newdata->question
= $key;
109 if (!empty($val[0])) {
110 $newdata->answer1
= $val[0];
112 $newdata->answer1
= "";
114 if (!empty($val[1])) {
115 $newdata->answer2
= $val[1];
117 $newdata->answer2
= "";
120 $DB->insert_record("survey_answers", $newdata);
124 // Print the page and finish up.
126 notice(get_string("thanksforanswers","survey", $USER->firstname
), "$CFG->wwwroot/course/view.php?id=$course->id");