first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-09-30 18:11:26 -04:00
commit e592ca6823
27270 changed files with 5002257 additions and 0 deletions
@@ -0,0 +1,65 @@
<?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/>.
/**
* Provides the information to backup question custom field.
*
* @package qbank_customfields
* @copyright 2021 Catalyst IT Australia Pty Ltd
* @author Matt Porritt <mattp@catalyst-au.net>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class backup_qbank_customfields_plugin extends \backup_qbank_plugin {
/**
* Returns the comment information to attach to question element.
*
* @return backup_plugin_element The backup plugin element
*/
protected function define_question_plugin_structure(): backup_plugin_element {
// Define the virtual plugin element with the condition to fulfill.
$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);
$customfields = new backup_nested_element('customfields');
$customfield = new backup_nested_element('customfield', ['id'],
['shortname', 'type', 'value', 'valueformat', 'valuetrust']);
$pluginwrapper->add_child($customfields);
$customfields->add_child($customfield);
$customfield->set_source_sql("SELECT cfd.id, cff.shortname, cff.type, cfd.value, cfd.valueformat, cfd.valuetrust
FROM {customfield_data} cfd
JOIN {customfield_field} cff ON cff.id = cfd.fieldid
JOIN {customfield_category} cfc ON cfc.id = cff.categoryid
WHERE cfc.component = 'qbank_customfields'
AND cfc.area = 'question'
AND cfd.instanceid = ?",
[
backup::VAR_PARENTID
]);
// Don't need to annotate ids nor files.
return $plugin;
}
}
@@ -0,0 +1,66 @@
<?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/>.
/**
* Restore plugin class that provides the necessary information needed to restore comments for questions.
*
* @package qbank_customfields
* @copyright 2021 Catalyst IT Australia Pty Ltd
* @author Matt Porritt <mattp@catalyst-au.net>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class restore_qbank_customfields_plugin extends restore_qbank_plugin {
/** @var stdClass|null a fieldset object. */
protected $cachedcategory;
/**
* Returns the paths to be handled by the plugin at question level.
*
* @return restore_path_element[] The restore path element array.
*/
protected function define_question_plugin_structure(): array {
return [new restore_path_element('customfield', $this->get_pathfor('/customfields/customfield'))];
}
/**
* Process the question custom field element.
*
* @param array $data The custom field data to restore.
*/
public function process_customfield(array $data) {
global $DB;
$newquestion = $this->get_new_parentid('question');
if (!empty($data->contextid) && $newcontextid = $this->get_mappingid('context', $data->contextid)) {
$fieldcontextid = $newcontextid;
} else {
// Get the category, so we can then later get the context.
$categoryid = $this->get_new_parentid('question_category');
if (empty($this->cachedcategory) || $this->cachedcategory->id != $categoryid) {
$this->cachedcategory = $DB->get_record('question_categories', ['id' => $categoryid]);
}
$fieldcontextid = $this->cachedcategory->contextid;
}
$data['newquestion'] = $newquestion;
$data['fieldcontextid'] = $fieldcontextid;
$customfieldhandler = qbank_customfields\customfield\question_handler::create();
$customfieldhandler->restore_instance_data_from_backup($this->task, $data);
}
}