mirror of
https://github.com/PlagiarismCheck/moodle-plagiarism_pchkorg.git
synced 2024-12-22 04:10:07 +00:00
84 lines
3.1 KiB
PHP
84 lines
3.1 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
class backup_plagiarism_pchkorg_plugin extends backup_plagiarism_plugin {
|
|
/**
|
|
* define_module_plugin_structure
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function define_module_plugin_structure() {
|
|
// Define the virtual plugin element without conditions as the global class checks already.
|
|
$plugin = $this->get_plugin_element();
|
|
|
|
// Create one standard named plugin element (the visible container).
|
|
$pluginwrapper = new backup_nested_element($this->get_recommended_name());
|
|
|
|
// Connect the visible container ASAP.
|
|
$plugin->add_child($pluginwrapper);
|
|
|
|
$configs = new backup_nested_element('pchkorg_activities_configs');
|
|
$config = new backup_nested_element('pchkorg_activities_config', array('id'), array('name', 'value'));
|
|
$pluginwrapper->add_child($configs);
|
|
$configs->add_child($config);
|
|
$config->set_source_table('plagiarism_pchkorg_config', array('cm' => backup::VAR_PARENTID));
|
|
|
|
// Now information about files to module.
|
|
$files = new backup_nested_element('pchkorg_files');
|
|
$file = new backup_nested_element('pchkorg_file', array('id'), array(
|
|
'cm', 'fileid', 'userid',
|
|
'state', 'score', 'created_at',
|
|
'textid', 'reportid', 'signature',
|
|
'attempt', 'itemid'
|
|
));
|
|
|
|
$pluginwrapper->add_child($files);
|
|
$files->add_child($file);
|
|
|
|
// To know if we are including userinfo.
|
|
$userinfo = $this->get_setting_value('userinfo');
|
|
if ($userinfo) {
|
|
$file->set_source_table('plagiarism_pchkorg_files', array('cm' => backup::VAR_PARENTID));
|
|
}
|
|
|
|
return $plugin;
|
|
}
|
|
|
|
/**
|
|
* define_course_plugin_structure
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function define_course_plugin_structure() {
|
|
$plugin = $this->get_plugin_element();
|
|
$pluginwrapper = new backup_nested_element($this->get_recommended_name());
|
|
$plugin->add_child($pluginwrapper);
|
|
|
|
$configs = new backup_nested_element('pchkorg_configs');
|
|
$config = new backup_nested_element('pchkorg_config', array('id'), array('plugin', 'name', 'value'));
|
|
$pluginwrapper->add_child($configs);
|
|
$configs->add_child($config);
|
|
$config->set_source_table('config_plugins', array(
|
|
'name' => backup::VAR_PARENTID, 'plugin' => backup_helper::is_sqlparam('plagiarism'),
|
|
));
|
|
|
|
return $plugin;
|
|
}
|
|
}
|