Moodle APIs 3.9
Moodle 3.9.13+ (Build: 20220325)
|
Multichoice question type conversion handler. More...
Public Member Functions | |
get_component_name () | |
Returns the normalized name of the plugin, eg mod_workshop. More... | |
get_converter () | |
get_paths () | |
get_question_subpaths () | |
log ($message, $level, $a=null, $depth=null, $display=false) | |
This function will be responsible for handling the params, and to call to the corresponding logger->process() once all modifications in params have been performed. More... | |
process_question (array $data, array $raw) | |
Appends the multichoice specific information to the question. More... | |
use_xml_writer (xml_writer $xmlwriter) | |
Provides a xml_writer instance to this qtype converter. More... | |
Protected Member Functions | |
close_xml_writer () | |
Question type handlers cannot close the xml_writer. More... | |
get_default_numerical_options ($oldquestiontextformat, $units) | |
Returns default numerical_option structure. More... | |
has_xml_writer () | |
Checks if the XML writer has been opened by self::open_xml_writer(). More... | |
make_sure_xml_exists ($filename, $rootelement=false, $content=array()) | |
Makes sure that a new XML file exists, or creates it itself. More... | |
migrate_files ($text, $component, $filearea, $itemid) | |
Migrate files belonging to one qtype plugin text field. More... | |
open_xml_writer ($filename) | |
Question type handlers cannot open the xml_writer. More... | |
write_answers (array $answers, $qtype) | |
Converts the answers and writes them into the questions.xml. More... | |
write_dataset_definitions (array $datasetdefinitions) | |
Writes the dataset_definitions structure. More... | |
write_multichoice (array $multichoices, $oldquestiontextformat, $questionid) | |
Converts the multichoice info and writes it into the question.xml. More... | |
write_numerical_options (array $numericaloption) | |
Writes the numerical_options structure. More... | |
write_numerical_units (array $numericalunits) | |
Writes the grouped numerical_units structure. More... | |
write_xml ($element, array $data, array $attribs=array(), $parent='/') | |
Writes the given XML tree data into the currently opened file. More... | |
Protected Attributes | |
moodle1_converter | $converter |
string | $pluginname |
string | $plugintype |
moodle1_question_bank_handler | $qbankhandler |
null string | $xmlfilename |
the name of file we are writing to | |
null xml_writer | $xmlwriter |
Multichoice question type conversion handler.
|
finalprotectedinherited |
Question type handlers cannot close the xml_writer.
Reimplemented from moodle1_xml_handler.
|
inherited |
Returns the normalized name of the plugin, eg mod_workshop.
string |
|
inherited |
moodle1_converter | the converter that required this handler |
|
protectedinherited |
Returns default numerical_option structure.
This structure is not present in moodle.xml, we create a new artificial one here.
int | $oldquestiontextformat |
array |
|
finalinherited |
moodle1_qtype_multichoice_handler::get_question_subpaths | ( | ) |
array |
Reimplemented from moodle1_qtype_handler.
|
protectedinherited |
Checks if the XML writer has been opened by self::open_xml_writer().
bool |
|
inherited |
This function will be responsible for handling the params, and to call to the corresponding logger->process() once all modifications in params have been performed.
Implements loggable.
|
protectedinherited |
Makes sure that a new XML file exists, or creates it itself.
This is here so we can check that all XML files that the restore process relies on have been created by an executed handler. If the file is not found, this method can create it using the given $rootelement as an empty root container in the file.
string | $filename | relative file name like 'course/course.xml' |
string | bool | $rootelement | root element to use, false to not create the file |
array | $content | content of the root element |
bool | true is the file existed, false if it did not |
|
protectedinherited |
Migrate files belonging to one qtype plugin text field.
array | $text | the html fragment containing references to files |
string | $component | the component for restored files |
string | $filearea | the file area for restored files |
int | $itemid | the itemid for restored files |
string | the text for this field, after files references have been processed |
|
finalprotectedinherited |
Question type handlers cannot open the xml_writer.
Reimplemented from moodle1_xml_handler.
moodle1_qtype_multichoice_handler::process_question | ( | array | $data, |
array | $raw | ||
) |
Appends the multichoice specific information to the question.
Reimplemented from moodle1_qtype_handler.
|
inherited |
Provides a xml_writer instance to this qtype converter.
xml_writer | $xmlwriter |
|
protectedinherited |
Converts the answers and writes them into the questions.xml.
The structure "answers" is used by several qtypes. It contains data from {question_answers} table.
array | $answers | as parsed by the grouped parser in moodle.xml |
string | $qtype | containing the answers |
|
protectedinherited |
Writes the dataset_definitions structure.
array | $datasetdefinitions | array of dataset_definition structures |
|
protected |
Converts the multichoice info and writes it into the question.xml.
array | $multichoices | the grouped structure |
int | $oldquestiontextformat | - { |
int | $questionid | question id |
|
protectedinherited |
Writes the numerical_options structure.
array | $numericaloption |
|
protectedinherited |
Writes the grouped numerical_units structure.
array | $numericalunits |
|
protectedinherited |
Writes the given XML tree data into the currently opened file.
string | $element | the name of the root element of the tree |
array | $data | the associative array of data to write |
array | $attribs | list of additional fields written as attributes instead of nested elements |
string | $parent | used internally during the recursion, do not set yourself |