1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
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/>.
|
|
|
17 |
|
|
|
18 |
/**
|
|
|
19 |
* @package mod_label
|
|
|
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 |
*/
|
|
|
24 |
|
|
|
25 |
defined('MOODLE_INTERNAL') || die();
|
|
|
26 |
|
|
|
27 |
require_once($CFG->dirroot . '/mod/label/backup/moodle2/restore_label_stepslib.php'); // Because it exists (must)
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* label restore task that provides all the settings and steps to perform one
|
|
|
31 |
* complete restore of the activity
|
|
|
32 |
*/
|
|
|
33 |
class restore_label_activity_task extends restore_activity_task {
|
|
|
34 |
|
|
|
35 |
/**
|
|
|
36 |
* Define (add) particular settings this activity can have
|
|
|
37 |
*/
|
|
|
38 |
protected function define_my_settings() {
|
|
|
39 |
// No particular settings for this activity
|
|
|
40 |
}
|
|
|
41 |
|
|
|
42 |
/**
|
|
|
43 |
* Define (add) particular steps this activity can have
|
|
|
44 |
*/
|
|
|
45 |
protected function define_my_steps() {
|
|
|
46 |
// label only has one structure step
|
|
|
47 |
$this->add_step(new restore_label_activity_structure_step('label_structure', 'label.xml'));
|
|
|
48 |
}
|
|
|
49 |
|
|
|
50 |
/**
|
|
|
51 |
* Define the contents in the activity that must be
|
|
|
52 |
* processed by the link decoder
|
|
|
53 |
*/
|
|
|
54 |
public static function define_decode_contents() {
|
|
|
55 |
$contents = array();
|
|
|
56 |
|
|
|
57 |
$contents[] = new restore_decode_content('label', array('intro'), 'label');
|
|
|
58 |
|
|
|
59 |
return $contents;
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
/**
|
|
|
63 |
* Define the decoding rules for links belonging
|
|
|
64 |
* to the activity to be executed by the link decoder
|
|
|
65 |
*/
|
|
|
66 |
public static function define_decode_rules() {
|
|
|
67 |
return array();
|
|
|
68 |
}
|
|
|
69 |
|
|
|
70 |
/**
|
|
|
71 |
* Define the restore log rules that will be applied
|
|
|
72 |
* by the {@link restore_logs_processor} when restoring
|
|
|
73 |
* label logs. It must return one array
|
|
|
74 |
* of {@link restore_log_rule} objects
|
|
|
75 |
*/
|
|
|
76 |
public static function define_restore_log_rules() {
|
|
|
77 |
$rules = array();
|
|
|
78 |
|
|
|
79 |
$rules[] = new restore_log_rule('label', 'add', 'view.php?id={course_module}', '{label}');
|
|
|
80 |
$rules[] = new restore_log_rule('label', 'update', 'view.php?id={course_module}', '{label}');
|
|
|
81 |
$rules[] = new restore_log_rule('label', 'view', 'view.php?id={course_module}', '{label}');
|
|
|
82 |
|
|
|
83 |
return $rules;
|
|
|
84 |
}
|
|
|
85 |
|
|
|
86 |
/**
|
|
|
87 |
* Define the restore log rules that will be applied
|
|
|
88 |
* by the {@link restore_logs_processor} when restoring
|
|
|
89 |
* course logs. It must return one array
|
|
|
90 |
* of {@link restore_log_rule} objects
|
|
|
91 |
*
|
|
|
92 |
* Note this rules are applied when restoring course logs
|
|
|
93 |
* by the restore final task, but are defined here at
|
|
|
94 |
* activity level. All them are rules not linked to any module instance (cmid = 0)
|
|
|
95 |
*/
|
|
|
96 |
public static function define_restore_log_rules_for_course() {
|
|
|
97 |
$rules = array();
|
|
|
98 |
|
|
|
99 |
$rules[] = new restore_log_rule('label', 'view all', 'index.php?id={course}', null);
|
|
|
100 |
|
|
|
101 |
return $rules;
|
|
|
102 |
}
|
|
|
103 |
}
|