MDL-36754 tests: Move moodle_url tests to own file
[moodle.git] / question / format / README.txt
blobbe9bc4df4919a99410e976e46d73a1d9cbb6bdba
1 Question import/export formats
2 ==============================
4 This directory contains plug-ins to supprt importing and exporting questions in
5 a variety of formats.
7 Each sub-module must contain at least a format.php file containing a class that
8 contains functions for reading, writing, importing and exporting questions.
10 For correct operation the class name must be based on the name of the plugin.
11 For example:
13 plugin: webct
14 class:  class qformat_webct extends qformat_default {
16 Most of them are based on the class found in question/format.php.
17 See the comments therein for more information.