MDL-45131 grades: Add validation for returned parameters in WS tests
[moodle.git] / backup / controller / base_controller.class.php
blob09987965e5f7269ed9ba4d8d76e90d99be498b28
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Base class with shared stuff between backup controller and restore
19 * controller.
21 * @package core_backup
22 * @copyright 2013 The Open University
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 abstract class base_controller extends backup implements loggable {
26 /**
27 * @var \core\progress\base Progress reporting object.
29 protected $progress;
31 /**
32 * @var base_logger Logging chain object (moodle, inline, fs, db, syslog)
34 protected $logger;
36 /**
37 * Gets the progress reporter, which can be used to report progress within
38 * the backup or restore process.
40 * @return \core\progress\base Progress reporting object
42 public function get_progress() {
43 return $this->progress;
46 /**
47 * Sets the progress reporter.
49 * @param \core\progress\base $progress Progress reporting object
51 public function set_progress(\core\progress\base $progress) {
52 $this->progress = $progress;
55 /**
56 * Gets first logger in logging chain.
58 * @return base_logger Logger
60 public function get_logger() {
61 return $this->logger;
64 /**
65 * Inserts a new logger at end of logging chain.
67 * @param base_logger $logger New logger to add
69 public function add_logger(base_logger $logger) {
70 $existing = $this->logger;
71 while ($existing->get_next()) {
72 $existing = $existing->get_next();
74 $existing->set_next($logger);
77 /**
78 * Logs data to the logger chain.
80 * @see loggable::log()
82 public function log($message, $level, $a = null, $depth = null, $display = false) {
83 backup_helper::log($message, $level, $a, $depth, $display, $this->logger);