MDL-23479 survey restore code
[moodle.git] / mod / survey / backup / moodle2 / restore_survey_stepslib.php
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
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.
9 //
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.
14 //
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/>.
18 /**
19  * @package moodlecore
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
23  */
25 /**
26  * Define all the restore steps that will be used by the restore_survey_activity_task
27  */
29 /**
30  * Structure step to restore one survey activity
31  */
32 class restore_survey_activity_structure_step extends restore_activity_structure_step {
34     protected function define_structure() {
36         $paths = array();
37         $userinfo = $this->get_setting_value('userinfo');
39         $paths[] = new restore_path_element('survey', '/activity/survey');
40         if ($userinfo) {
41             $paths[] = new restore_path_element('survey_answer', '/activity/survey/answers/answer');
42             $paths[] = new restore_path_element('survey_analys', '/activity/survey/analysis/analys');
43         }
45         // Return the paths wrapped into standard activity structure
46         return $this->prepare_activity_structure($paths);
47     }
49     protected function process_survey($data) {
50         global $DB;
52         $data = (object)$data;
53         $oldid = $data->id;
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);
60     }
62     protected function process_survey_analys($data) {
63         global $DB;
65         $data = (object)$data;
66         $oldid = $data->id;
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)
73     }
75     protected function process_survey_answer($data) {
76         global $DB;
78         $data = (object)$data;
79         $oldid = $data->id;
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)
86     }
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);
91     }
92 }