. /** * Helper functions and callbacks. * * @package qbank_exporttoxml * @copyright 2023 The Open University * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ use core\plugininfo\qbank; use qbank_exporttoxml\helper; /** * Callback to add content to the question preview screen. * * @param question_definition $question the question being previewed. * @param int $courseid the course id. * @return string HTML to add to the question preview screen. */ function qbank_exporttoxml_preview_display(question_definition $question, int $courseid): string { if (!qbank::is_plugin_enabled('qbank_exporttoxml')) { return ''; } if (!question_has_capability_on($question, 'view')) { return ''; } $exporturl = helper::question_get_export_single_question_url($question); return html_writer::div(html_writer::link($exporturl, get_string('exportonequestion', 'question'))); }