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 // insert the choice record
57 $newitemid = $DB->insert_record('survey', $data);
58 // inmediately after inserting "activity" record, call this
59 $this->apply_activity_instance($newitemid);
62 protected function process_survey_analys($data) {
65 $data = (object)$data;
67 $data->survey = $this->get_new_parentid('survey');
68 $data->userid = $this->get_mappingid('user', $data->userid);
70 $newitemid = $DB->insert_record('survey_analysis', $data);
71 // No need to save this mapping as far as nothing depend on it
72 // (child paths, file areas nor links decoder)
75 protected function process_survey_answer($data) {
78 $data = (object)$data;
80 $data->survey = $this->get_new_parentid('survey');
81 $data->userid = $this->get_mappingid('user', $data->userid);
83 $newitemid = $DB->insert_record('survey_answers', $data);
84 // No need to save this mapping as far as nothing depend on it
85 // (child paths, file areas nor links decoder)
88 protected function after_execute() {
89 // Add survey related files, no need to match by itemname (just internally handled context)
90 $this->add_related_files('mod_survey', 'intro', null);