. /** * This file contains the backup code for the feedback_editpdfplus plugin. * * @package assignfeedback_editpdfplus * @copyright 2013 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Provides the information to backup feedback pdf annotations. * * This just adds its fileareas to the annotations and the comments and annotation data. * * @package assignfeedback_editpdfplus * @copyright 2013 Damyon Wiese * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class backup_assignfeedback_editpdfplus_subplugin extends backup_subplugin { /** * Returns the subplugin information to attach to feedback element * @return backup_subplugin_element */ protected function define_grade_subplugin_structure() { // Create XML elements. $subplugin = $this->get_subplugin_element(); $subpluginwrapper = new backup_nested_element($this->get_recommended_name()); $subpluginelementfiles = new backup_nested_element('feedback_editpdfplus_files', null, array('gradeid')); $subpluginelementannotations = new backup_nested_element('feedback_editpdfplus_annotations'); $subpluginelementannotation = new backup_nested_element( 'feedback_editpdfplus_annotation', null, array('gradeid', 'pageno', 'x', 'y', 'endx', 'endy', 'cartridgex', 'cartridgey', 'path', 'toolid', 'textannot', 'colour', 'draft', 'answerrequested', 'studentanswer', 'studentstatus', 'displaylock', 'displayrotation', 'borderstyle', 'parent_annot') ); // Connect XML elements into the tree. $subplugin->add_child($subpluginwrapper); $subpluginelementannotations->add_child($subpluginelementannotation); $subpluginwrapper->add_child($subpluginelementfiles); $subpluginwrapper->add_child($subpluginelementannotations); // Set source to populate the data. $subpluginelementfiles->set_source_sql('SELECT id AS gradeid from {assign_grades} where id = :gradeid', array('gradeid' => backup::VAR_PARENTID)); $subpluginelementannotation->set_source_table('assignfeedback_editpp_annot', array('gradeid' => backup::VAR_PARENTID)); // We only need to backup the files in the final pdf area, and the readonly page images - the others can be regenerated. $subpluginelementfiles->annotate_files('assignfeedback_editpdfplus', \assignfeedback_editpdfplus\document_services::FINAL_PDF_FILEAREA, 'gradeid'); $subpluginelementfiles->annotate_files('assignfeedback_editpdfplus', \assignfeedback_editpdfplus\document_services::PAGE_IMAGE_READONLY_FILEAREA, 'gradeid'); return $subplugin; } }