. /** * Defines backup_autoattendmod_activity_task class * * @package mod_autoattendmod * @category backup * @copyright 2016 Fumi.Iseki */ defined('MOODLE_INTERNAL') || die; require_once($CFG->dirroot . '/mod/autoattendmod/backup/moodle2/backup_autoattendmod_stepslib.php'); /** * Provides the steps to perform one complete backup of the Label instance */ class backup_autoattendmod_activity_task extends backup_activity_task { /** * No specific settings for this activity */ protected function define_my_settings() { } /** * Defines a backup step to store the instance data in the autoattendmod.xml file */ protected function define_my_steps() { $this->add_step(new backup_autoattendmod_activity_structure_step('autoattendmod_structure', 'autoattendmod.xml')); } /** * No content encoding needed for this activity * * @param string $content some HTML text that eventually contains URLs to the activity instance scripts * @return string the same content with no changes */ static public function encode_content_links($content) { return $content; } }