. /** * Define all the backup steps that will be used by the backup_customcert_activity_task. * * @package mod_customcert * @copyright 2013 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.'); /** * Define the complete customcert structure for backup, with file and id annotations. * * @package mod_customcert * @copyright 2013 Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class backup_customcert_activity_structure_step extends backup_activity_structure_step { /** * Define the structure of the backup file. * * @return backup_nested_element */ protected function define_structure() { // The instance. $customcert = new backup_nested_element('customcert', array('id'), array( 'templateid', 'name', 'intro', 'introformat', 'requiredtime', 'verifyany', 'emailstudents', 'emailteachers', 'emailothers', 'protection', 'timecreated', 'timemodified')); // The template. $template = new backup_nested_element('template', array('id'), array( 'name', 'contextid', 'timecreated', 'timemodified')); // The pages. $pages = new backup_nested_element('pages'); $page = new backup_nested_element('page', array('id'), array( 'templateid', 'width', 'height', 'leftmargin', 'rightmargin', 'sequence', 'timecreated', 'timemodified')); // The elements. $element = new backup_nested_element('element', array('id'), array( 'pageid', 'name', 'element', 'data', 'font', 'fontsize', 'colour', 'posx', 'posy', 'width', 'refpoint', 'sequence', 'alignment', 'timecreated', 'timemodified')); // The issues. $issues = new backup_nested_element('issues'); $issue = new backup_nested_element('issue', array('id'), array( 'customcertid', 'userid', 'timecreated', 'emailed', 'code')); // Build the tree. $customcert->add_child($issues); $issues->add_child($issue); $customcert->add_child($template); $template->add_child($pages); $pages->add_child($page); $page->add_child($element); // Define sources. $customcert->set_source_table('customcert', array('id' => backup::VAR_ACTIVITYID)); // Define template source. $template->set_source_table('customcert_templates', array('contextid' => backup::VAR_CONTEXTID)); // Define page source. $page->set_source_table('customcert_pages', array('templateid' => backup::VAR_PARENTID)); // Define element source, each element belongs to a page. $element->set_source_table('customcert_elements', array('pageid' => backup::VAR_PARENTID)); // If we are including user info then save the issues. if ($this->get_setting_value('userinfo')) { $issue->set_source_table('customcert_issues', array('customcertid' => backup::VAR_ACTIVITYID)); } // Annotate the user id's where required. $issue->annotate_ids('user', 'userid'); // Define file annotations. $customcert->annotate_files('mod_customcert', 'intro', null); $customcert->annotate_files('mod_customcert', 'image', null, context_course::instance($this->get_courseid())->id); // Return the root element (customcert), wrapped into standard activity structure. return $this->prepare_activity_structure($customcert); } }