forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master_MDL-72553_qbank_quiz' of https://github.com/cata…
- Loading branch information
Showing
34 changed files
with
1,841 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
question/bank/customfields/backup/moodle2/backup_qbank_customfields_plugin.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?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 <[email protected]> | ||
* @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']); | ||
|
||
$pluginwrapper->add_child($customfields); | ||
$customfields->add_child($customfield); | ||
|
||
$customfield->set_source_sql("SELECT cfd.id, cff.shortname, cff.type, cfd.value, cfd.valueformat | ||
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; | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
question/bank/customfields/backup/moodle2/restore_qbank_customfields_plugin.class.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?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 <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class restore_qbank_customfields_plugin extends restore_qbank_plugin { | ||
|
||
/** | ||
* 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); | ||
} | ||
} |
91 changes: 91 additions & 0 deletions
91
question/bank/customfields/classes/custom_field_column.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<?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/>. | ||
|
||
namespace qbank_customfields; | ||
|
||
use core_question\local\bank\column_base; | ||
|
||
/** | ||
* A column type for the name of the question creator. | ||
* | ||
* @package qbank_customfields | ||
* @copyright 2021 Catalyst IT Australia Pty Ltd | ||
* @author Matt Porritt <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class custom_field_column extends column_base { | ||
|
||
/** @var \core_customfield\field_controller The custom field this column is displaying. */ | ||
protected $field; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param view $qbank the question bank view we are helping to render. | ||
* @param \core_customfield\field_controller $field The custom field this column is displaying. | ||
*/ | ||
public function __construct(\core_question\local\bank\view $qbank, \core_customfield\field_controller $field) { | ||
parent::__construct($qbank); | ||
$this->field = $field; | ||
} | ||
|
||
/** | ||
* Get the internal name for this column. Used as a CSS class name, | ||
* and to store information about the current sort. Must match PARAM_ALPHA. | ||
* | ||
* @return string column name. | ||
*/ | ||
public function get_name(): string { | ||
return 'customfield'; | ||
} | ||
|
||
/** | ||
* Get the name of this column. This must be unique. | ||
* When using the inherited class to make many columns from one parent, | ||
* ensure each instance returns a unique value. | ||
* | ||
* @return string The unique name; | ||
*/ | ||
public function get_column_name(): string { | ||
return 'custom_field_column\\' . $this->field->get('shortname'); | ||
} | ||
|
||
/** | ||
* Title for this column. Not used if is_sortable returns an array. | ||
* | ||
* @return string | ||
*/ | ||
protected function get_title(): string { | ||
return $this->field->get_formatted_name(); | ||
} | ||
|
||
/** | ||
* Output the contents of this column. | ||
* | ||
* @param object $question the row from the $question table, augmented with extra information. | ||
* @param string $rowclasses CSS class names that should be applied to this row of output. | ||
*/ | ||
protected function display_content($question, $rowclasses): void { | ||
$fieldhandler = $this->field->get_handler(); | ||
if ($fieldhandler->can_view($this->field, $question->id)) { | ||
$fielddata = $fieldhandler->get_field_data($this->field, $question->id); | ||
echo $fieldhandler->display_custom_field_table($fielddata); | ||
} else { | ||
echo ''; | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.