function questions_export_formats in Quiz 6.5
Return value
list of implemented formats that can be exported (e.g. CSV, QTI, Aiken)
1 call to questions_export_formats()
- questions_export_form in includes/
questions_export/ questions_export.admin.inc - Implementation of hook_form form to upload questions
File
- includes/
questions_export/ questions_export.admin.inc, line 47
Code
function questions_export_formats() {
$type = array(
'native_csv' => t('Comma Separated Values (by Drupal)'),
'native_aiken' => t('Aiken (by Drupal)'),
'moodle_gift' => t('Moodle GIFT (by Moodle)'),
'moodle_qti2' => t('QTI 2.0 (by Moodle)'),
'moodle_xml' => t('Moodle XML (by Moodle)'),
);
return $type;
}