mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 03:16:42 +02:00
Various quiz changes. Most importantly is the new framework for importing
quiz questions. Importing works but is still being tested.
This commit is contained in:
parent
4270bba267
commit
49220fa70c
15 changed files with 695 additions and 152 deletions
49
lang/en/help/quiz/import.html
Normal file
49
lang/en/help/quiz/import.html
Normal file
|
@ -0,0 +1,49 @@
|
|||
<P ALIGN=CENTER><B>Importing new questions</B></P>
|
||||
|
||||
<P>This function allows you to import questions from
|
||||
external text files.
|
||||
|
||||
<P>Several common file formats are supported:
|
||||
|
||||
<P><B>Missing word format</B></P>
|
||||
<UL>
|
||||
<P>This format only supports multiple choice questions.
|
||||
Each answer is separated with a tilde (~), and the correct answer is
|
||||
prefixed with an equals sign (=). Here is an example:
|
||||
|
||||
<BLOCKQUOTE>As soon as we begin to explore our body parts as infants
|
||||
we become students of {=anatomy and physiology ~reflexology
|
||||
~science ~experiment}, and in a sense we remain students for life.
|
||||
</BLOCKQUOTE>
|
||||
|
||||
<P>More info: <? helpbutton("formatmissingword", "", "quiz") ?></P>
|
||||
</UL>
|
||||
|
||||
|
||||
<P><B>IMS QTI format</B></P>
|
||||
<UL>
|
||||
<P>The standard format for Question and Test Interoperability, from IMS.
|
||||
<P>Not yet implemented
|
||||
|
||||
<P>More info: <? helpbutton("formatqti", "", "quiz") ?></P>
|
||||
</UL>
|
||||
|
||||
|
||||
<P><B>WebCT format</B></P>
|
||||
<UL>
|
||||
<P>The format of files exported from WebCT.
|
||||
<P>Not yet implemented
|
||||
|
||||
<P>More info: <? helpbutton("formatwebct", "", "quiz") ?></P>
|
||||
</UL>
|
||||
|
||||
<P><B>Custom format</B></P>
|
||||
<UL>
|
||||
<P>If you have your own format that you need to import, you can
|
||||
implement it yourself by editing mod/quiz/format/custom.php
|
||||
|
||||
<P>The amount of new code needed is quite small - just enough
|
||||
to parse a single question from given text.
|
||||
|
||||
<P>More info: <? helpbutton("formatcustom", "", "quiz") ?></P>
|
||||
</UL>
|
Loading…
Add table
Add a link
Reference in a new issue