moodle/question/format
Daniel Ziegenberg 55ef05579b
MDL-69119 qformat_xml: fix mc calculated export
The Moodle XML export of multiple choice calculated questions was
missing proper escaping of answers. Also the indentation of the
generated xml was off.

Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
2023-10-03 12:18:11 +02:00
..
aiken Merge branch 'luca-branch' of https://github.com/ilyatregubov/moodle 2023-09-15 17:05:27 +08:00
blackboard_six MDL-77940 versions: bump all versions and requires near release 2023-04-18 18:08:09 +02:00
gift MDL-77940 versions: bump all versions and requires near release 2023-04-18 18:08:09 +02:00
missingword MDL-77940 versions: bump all versions and requires near release 2023-04-18 18:08:09 +02:00
multianswer MDL-77940 versions: bump all versions and requires near release 2023-04-18 18:08:09 +02:00
xhtml MDL-77940 versions: bump all versions and requires near release 2023-04-18 18:08:09 +02:00
xml MDL-69119 qformat_xml: fix mc calculated export 2023-10-03 12:18:11 +02:00
README.txt
upgrade.txt MDL-72958 questions: tidy up all question-related upgrade.txt files 2022-03-22 14:53:43 +00:00

Question import/export formats
==============================

This directory contains plug-ins to supprt importing and exporting questions in
a variety of formats.

Each sub-module must contain at least a format.php file containing a class that
contains functions for reading, writing, importing and exporting questions.

For correct operation the class name must be based on the name of the plugin.
For example:

plugin: webct
class:  class qformat_webct extends qformat_default {

Most of them are based on the class found in question/format.php.
See the comments therein for more information.