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/>.
20 * @subpackage backup-moodle2
21 * @copyright 2010 onwards Eloy Lafuente (stronk7) {@link http://stronk7.com}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 * Define all the restore steps that will be used by the restore_survey_activity_task
30 * Structure step to restore one survey activity
32 class restore_survey_activity_structure_step extends restore_activity_structure_step {
34 protected function define_structure() {
37 $userinfo = $this->get_setting_value('userinfo');
39 $paths[] = new restore_path_element('survey', '/activity/survey');
41 $paths[] = new restore_path_element('survey_answer', '/activity/survey/answers/answer');
42 $paths[] = new restore_path_element('survey_analys', '/activity/survey/analysis/analys');
45 // Return the paths wrapped into standard activity structure
46 return $this->prepare_activity_structure($paths);
49 protected function process_survey($data) {
52 $data = (object)$data;
54 $data->course = $this->get_courseid();
56 // Any changes to the list of dates that needs to be rolled should be same during course restore and course reset.
59 // insert the survey record
60 $newitemid = $DB->insert_record('survey', $data);
61 // immediately after inserting "activity" record, call this
62 $this->apply_activity_instance($newitemid);
65 protected function process_survey_analys($data) {
68 $data = (object)$data;
70 $data->survey = $this->get_new_parentid('survey');
71 $data->userid = $this->get_mappingid('user', $data->userid);
73 $newitemid = $DB->insert_record('survey_analysis', $data);
74 // No need to save this mapping as far as nothing depend on it
75 // (child paths, file areas nor links decoder)
78 protected function process_survey_answer($data) {
81 $data = (object)$data;
83 $data->survey = $this->get_new_parentid('survey');
84 $data->userid = $this->get_mappingid('user', $data->userid);
86 $newitemid = $DB->insert_record('survey_answers', $data);
87 // No need to save this mapping as far as nothing depend on it
88 // (child paths, file areas nor links decoder)
91 protected function after_execute() {
92 // Add survey related files, no need to match by itemname (just internally handled context)
93 $this->add_related_files('mod_survey', 'intro', null);