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
25 // Root backup settings
28 * root generic setting to store different things without dependencies
30 class backup_generic_setting extends root_backup_setting {}
33 * root setting to handle backup file names (no dependencies nor anything else)
35 class backup_filename_setting extends backup_generic_setting {
37 public function __construct($name, $vtype, $value = null, $visibility = self::VISIBLE, $status = self::NOT_LOCKED) {
38 parent::__construct($name, $vtype, $value, $visibility, $status);
41 public function set_ui($label, $value, array $options = null) {
42 parent::make_ui(self::UI_HTML_TEXTFIELD, $label, null, $options);
43 $this->set_value($value);
48 * root setting to control if backup will include user information
49 * A lot of other settings are dependent of this (module's user info,
50 * grades user info, messages, blogs...
52 class backup_users_setting extends backup_generic_setting {}
55 * root setting to control if backup will include activities or no.
56 * A lot of other settings (_included at activity levels)
57 * are dependent of this setting
59 class backup_activities_setting extends backup_generic_setting {}
62 * root setting to control if backup will generate anonymized
63 * user info or no, depends of @backup_users_setting so only is
64 * availabe if the former is enabled (apart from security
67 class backup_anonymize_setting extends root_backup_setting {}
70 * root setting to control if backup will include
71 * user files or no (images, local storage), depends of @backup_users_setting
72 * exactly in the same way than @backup_anonymize_setting so we extend from it
74 class backup_user_files_setting extends backup_anonymize_setting {}
77 * root setting to control if backup will include
78 * role assignments or no (any level), depends of @backup_users_setting
79 * exactly in the same way than @backup_anonymize_setting so we extend from it
81 class backup_role_assignments_setting extends backup_anonymize_setting {}
84 * root setting to control if backup will include
85 * logs or no (any level), depends of @backup_users_setting
86 * exactly in the same way than @backup_anonymize_setting so we extend from it
88 class backup_logs_setting extends backup_anonymize_setting {}
91 * root setting to control if backup will include
92 * comments or no (any level), depends of @backup_users_setting
93 * exactly in the same way than @backup_anonymize_setting so we extend from it
95 class backup_comments_setting extends backup_anonymize_setting {}
98 * root setting to control if backup will include
99 * users completion data or no (any level), depends of @backup_users_setting
100 * exactly in the same way than @backup_anonymize_setting so we extend from it
102 class backup_userscompletion_setting extends backup_anonymize_setting {}
104 // Section backup settings
107 * generic section setting to pass various settings between tasks and steps
109 class backup_section_generic_setting extends section_backup_setting {}
112 * Setting to define if one section is included or no. Activities _included
113 * settings depend of them if available
115 class backup_section_included_setting extends section_backup_setting {}
118 * section backup setting to control if section will include
119 * user information or no, depends of @backup_users_setting
121 class backup_section_userinfo_setting extends section_backup_setting {}
124 // Activity backup settings
127 * generic activity setting to pass various settings between tasks and steps
129 class backup_activity_generic_setting extends activity_backup_setting {}
132 * activity backup setting to control if activity will
133 * be included or no, depends of @backup_activities_setting and
134 * optionally parent section included setting
136 class backup_activity_included_setting extends activity_backup_setting {}
139 * activity backup setting to control if activity will include
140 * user information or no, depends of @backup_users_setting
142 class backup_activity_userinfo_setting extends activity_backup_setting {}