. defined('MOODLE_INTERNAL') || die(); /** * Base class for report backup plugins. * * NOTE: When you back up a course, it potentially may run backup for all * reports. In order to control whether a particular report gets * backed up, a report should make use of the second and third * parameters in get_plugin_element(). * * @package core_backup * @subpackage moodle2 * @category backup * @copyright 2011 Petr Skoda * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class backup_report_plugin extends backup_plugin { // Use default parent behaviour }