Commit | Line | Data |
---|---|---|
fbc2778d EL |
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 moodlecore | |
20 | * @subpackage backup-includes | |
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 | // Prevent direct access to this file | |
26 | if (!defined('MOODLE_INTERNAL')) { | |
27 | die('Direct access to this script is forbidden.'); | |
28 | } | |
29 | ||
30 | // Include all the backup needed stuff | |
31 | require_once($CFG->dirroot . '/backup/util/interfaces/checksumable.class.php'); | |
32 | require_once($CFG->dirroot . '/backup/util/interfaces/loggable.class.php'); | |
33 | require_once($CFG->dirroot . '/backup/util/interfaces/executable.class.php'); | |
34 | require_once($CFG->dirroot . '/backup/util/helper/restore_moodlexml_parser_processor.class.php'); | |
35 | require_once($CFG->dirroot . '/backup/util/xml/parser/progressive_parser.class.php'); | |
36 | require_once($CFG->dirroot . '/backup/backup.class.php'); | |
37 | require_once($CFG->dirroot . '/backup/util/output/output_controller.class.php'); | |
38 | require_once($CFG->dirroot . '/backup/util/dbops/backup_dbops.class.php'); | |
39 | require_once($CFG->dirroot . '/backup/util/dbops/restore_dbops.class.php'); | |
40 | require_once($CFG->dirroot . '/backup/util/dbops/backup_controller_dbops.class.php'); | |
41 | require_once($CFG->dirroot . '/backup/util/dbops/restore_controller_dbops.class.php'); | |
42 | require_once($CFG->dirroot . '/backup/util/checks/restore_check.class.php'); | |
43 | require_once($CFG->dirroot . '/backup/util/loggers/base_logger.class.php'); | |
44 | require_once($CFG->dirroot . '/backup/util/loggers/error_log_logger.class.php'); | |
45 | require_once($CFG->dirroot . '/backup/util/loggers/file_logger.class.php'); | |
46 | require_once($CFG->dirroot . '/backup/util/loggers/database_logger.class.php'); | |
47 | require_once($CFG->dirroot . '/backup/util/loggers/output_indented_logger.class.php'); | |
48 | require_once($CFG->dirroot . '/backup/util/factories/backup_factory.class.php'); | |
49 | require_once($CFG->dirroot . '/backup/util/factories/restore_factory.class.php'); | |
50 | require_once($CFG->dirroot . '/backup/util/helper/backup_helper.class.php'); | |
51 | require_once($CFG->dirroot . '/backup/util/helper/backup_general_helper.class.php'); | |
52 | require_once($CFG->dirroot . '/backup/util/settings/setting_dependency.class.php'); | |
53 | require_once($CFG->dirroot . '/backup/util/settings/base_setting.class.php'); | |
54 | require_once($CFG->dirroot . '/backup/util/settings/backup_setting.class.php'); | |
55 | require_once($CFG->dirroot . '/backup/util/settings/root/root_backup_setting.class.php'); | |
56 | require_once($CFG->dirroot . '/backup/util/settings/activity/activity_backup_setting.class.php'); | |
57 | require_once($CFG->dirroot . '/backup/util/settings/section/section_backup_setting.class.php'); | |
58 | require_once($CFG->dirroot . '/backup/util/settings/course/course_backup_setting.class.php'); | |
59 | require_once($CFG->dirroot . '/backup/util/plan/base_plan.class.php'); | |
60 | require_once($CFG->dirroot . '/backup/util/plan/restore_plan.class.php'); | |
61 | require_once($CFG->dirroot . '/backup/util/plan/base_task.class.php'); | |
62 | require_once($CFG->dirroot . '/backup/util/plan/restore_task.class.php'); | |
63 | require_once($CFG->dirroot . '/backup/util/plan/base_step.class.php'); | |
64 | require_once($CFG->dirroot . '/backup/util/plan/restore_step.class.php'); | |
65 | require_once($CFG->dirroot . '/backup/util/plan/restore_execution_step.class.php'); | |
66 | require_once($CFG->dirroot . '/backup/moodle2/restore_plan_builder.class.php'); | |
67 | require_once($CFG->dirroot . '/backup/controller/restore_controller.class.php'); | |
68 | //require_once($CFG->dirroot . '/backup/util/ui/backup_ui.class.php'); | |
69 | //require_once($CFG->dirroot . '/backup/util/ui/backup_ui_stage.class.php'); | |
70 | require_once($CFG->dirroot . '/backup/util/ui/backup_ui_setting.class.php'); | |
71 | ||
72 | // And some moodle stuff too |