2009-11-04 11:57:52 +00:00
|
|
|
<?php
|
2011-02-21 17:29:18 +00:00
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines the export questions form.
|
|
|
|
*
|
|
|
|
* @package moodlecore
|
|
|
|
* @subpackage questionbank
|
|
|
|
* @copyright 2007 Jamie Pratt me@jamiep.org
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-02-23 15:03:35 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
2010-05-13 02:02:05 +00:00
|
|
|
|
2011-02-21 17:29:18 +00:00
|
|
|
require_once($CFG->libdir . '/formslib.php');
|
|
|
|
|
2007-08-09 22:44:14 +00:00
|
|
|
|
2011-02-21 17:29:18 +00:00
|
|
|
/**
|
|
|
|
* Form to export questions from the question bank.
|
|
|
|
*
|
|
|
|
* @copyright 2007 Jamie Pratt me@jamiep.org
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
2007-08-09 22:44:14 +00:00
|
|
|
class question_export_form extends moodleform {
|
|
|
|
|
2011-03-23 16:22:25 +00:00
|
|
|
protected function definition() {
|
2011-02-21 17:29:18 +00:00
|
|
|
$mform = $this->_form;
|
2007-08-09 22:44:14 +00:00
|
|
|
|
2011-02-21 17:29:18 +00:00
|
|
|
$defaultcategory = $this->_customdata['defaultcategory'];
|
|
|
|
$contexts = $this->_customdata['contexts'];
|
|
|
|
|
|
|
|
// Choice of format, with help.
|
|
|
|
$mform->addElement('header', 'fileformat', get_string('fileformat', 'question'));
|
2007-08-17 15:15:21 +00:00
|
|
|
$fileformatnames = get_import_export_formats('export');
|
|
|
|
$radioarray = array();
|
2010-04-24 09:25:32 +00:00
|
|
|
$i = 0 ;
|
2008-07-10 15:06:19 +00:00
|
|
|
foreach ($fileformatnames as $shortname => $fileformatname) {
|
2010-04-24 09:25:32 +00:00
|
|
|
$currentgrp1 = array();
|
2011-02-21 17:29:18 +00:00
|
|
|
$currentgrp1[] = $mform->createElement('radio', 'format', '', $fileformatname, $shortname);
|
MDL-29808 qformats: use standard pluginname string and add version.php
AMOS BEGIN
MOV [aiken,qformat_aiken],[pluginname,qformat_aiken]
MOV [aiken_help,qformat_aiken],[pluginname_help,qformat_aiken]
MOV [aiken_link,qformat_aiken],[pluginname_link,qformat_aiken]
MOV [blackboard,qformat_blackboard],[pluginname,qformat_blackboard]
MOV [blackboard_help,qformat_blackboard],[pluginname_help,qformat_blackboard]
MOV [blackboard_six,qformat_blackboard_six],[pluginname,qformat_blackboard_six]
MOV [blackboard_six_help,qformat_blackboard_six],[pluginname_help,qformat_blackboard_six]
MOV [examview,qformat_examview],[pluginname,qformat_examview]
MOV [examview_help,qformat_examview],[pluginname_help,qformat_examview]
MOV [gift_help,qformat_gift],[pluginname_help,qformat_gift]
MOV [gift_link,qformat_gift],[pluginname_link,qformat_gift]
MOV [learnwise,qformat_learnwise],[pluginname,qformat_learnwise]
MOV [learnwise_help,qformat_learnwise],[pluginname_help,qformat_learnwise]
MOV [missingword,qformat_missingword],[pluginname,qformat_missingword]
MOV [missingword_help,qformat_missingword],[pluginname_help,qformat_missingword]
MOV [missingword_link,qformat_missingword],[pluginname_link,qformat_missingword]
MOV [multianswer,qformat_multianswer],[pluginname,qformat_multianswer]
MOV [multianswer_help,qformat_multianswer],[pluginname_help,qformat_multianswer]
MOV [multianswer_link,qformat_multianswer],[pluginname_link,qformat_multianswer]
MOV [webct_help,qformat_webct],[pluginname_help,qformat_webct]
MOV [webct_link,qformat_webct],[pluginname_link,qformat_webct]
MOV [xhtml,qformat_xhtml],[pluginname,qformat_xhtml]
MOV [xhtml_help,qformat_xhtml],[pluginname_help,qformat_xhtml]
MOV [xhtml_link,qformat_xhtml],[pluginname_link,qformat_xhtml]
MOV [xml_help,qformat_xml],[pluginname_help,qformat_xml]
MOV [xml_link,qformat_xml],[pluginname_link,qformat_xml]
AMOS END
2011-11-03 11:16:14 +00:00
|
|
|
$mform->addGroup($currentgrp1, "formathelp[$i]", ' ', array('<br />'), false);
|
|
|
|
|
|
|
|
if (get_string_manager()->string_exists('pluginname_help', 'qformat_' . $shortname)) {
|
|
|
|
$mform->addHelpButton("formathelp[$i]", 'pluginname', 'qformat_' . $shortname);
|
|
|
|
}
|
|
|
|
|
2010-04-24 09:25:32 +00:00
|
|
|
$i++ ;
|
2007-08-17 15:15:21 +00:00
|
|
|
}
|
2011-02-21 17:29:18 +00:00
|
|
|
$mform->addRule("formathelp[0]", null, 'required', null, 'client');
|
|
|
|
|
|
|
|
// Export options.
|
|
|
|
$mform->addElement('header', 'general', get_string('general', 'form'));
|
2007-08-09 22:44:14 +00:00
|
|
|
|
MDL-21695 question: replaced help files with new help strings
AMOS BEGIN
HLP question/categoryparent.html,[parentcategory_help,core_question]
HLP question/categories.html,[editcategories_help,core_question]
HLP quiz/export.html,[exportquestions_help,core_question]
HLP quiz/exportcategory.html,[exportcategory_help,core_question]
HLP quiz/exportcategory.html,[exportcategory_help,core_question]
HLP quiz/importcategory.html,[importcategory_help,core_question]
HLP quiz/matchgrades.html,[matchgrades_help,core_question]
HLP quiz/quiz/stoponerror.html,[stoponerror_help,core_question]
HLP qtype_multichoice/multichoiceshuffle.html,[shuffleanswers_help,qtype_multichoice]
HLP quiz/matchshuffle.html,[shuffle_help,qtype_match]
HLP quiz/generalfeedback.html,[generalfeedback_help,mod_quiz]
AMOS END
2010-08-02 21:24:32 +00:00
|
|
|
$mform->addElement('questioncategory', 'category', get_string('exportcategory', 'question'), compact('contexts'));
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->setDefault('category', $defaultcategory);
|
MDL-21695 question: replaced help files with new help strings
AMOS BEGIN
HLP question/categoryparent.html,[parentcategory_help,core_question]
HLP question/categories.html,[editcategories_help,core_question]
HLP quiz/export.html,[exportquestions_help,core_question]
HLP quiz/exportcategory.html,[exportcategory_help,core_question]
HLP quiz/exportcategory.html,[exportcategory_help,core_question]
HLP quiz/importcategory.html,[importcategory_help,core_question]
HLP quiz/matchgrades.html,[matchgrades_help,core_question]
HLP quiz/quiz/stoponerror.html,[stoponerror_help,core_question]
HLP qtype_multichoice/multichoiceshuffle.html,[shuffleanswers_help,qtype_multichoice]
HLP quiz/matchshuffle.html,[shuffle_help,qtype_match]
HLP quiz/generalfeedback.html,[generalfeedback_help,mod_quiz]
AMOS END
2010-08-02 21:24:32 +00:00
|
|
|
$mform->addHelpButton('category', 'exportcategory', 'question');
|
2007-08-09 22:44:14 +00:00
|
|
|
|
|
|
|
$categorygroup = array();
|
2011-02-21 17:29:18 +00:00
|
|
|
$categorygroup[] = $mform->createElement('checkbox', 'cattofile', '', get_string('tofilecategory', 'question'));
|
|
|
|
$categorygroup[] = $mform->createElement('checkbox', 'contexttofile', '', get_string('tofilecontext', 'question'));
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->addGroup($categorygroup, 'categorygroup', '', '', false);
|
|
|
|
$mform->disabledIf('categorygroup', 'cattofile', 'notchecked');
|
|
|
|
$mform->setDefault('cattofile', 1);
|
|
|
|
$mform->setDefault('contexttofile', 1);
|
2009-11-04 11:57:52 +00:00
|
|
|
|
2011-02-21 17:29:18 +00:00
|
|
|
// Set a template for the format select elements
|
|
|
|
$renderer = $mform->defaultRenderer();
|
2008-07-09 13:07:29 +00:00
|
|
|
$template = "{help} {element}\n";
|
|
|
|
$renderer->setGroupElementTemplate($template, 'format');
|
2007-08-09 22:44:14 +00:00
|
|
|
|
2011-02-21 17:29:18 +00:00
|
|
|
// Submit buttons.
|
|
|
|
$this->add_action_buttons(false, get_string('exportquestions', 'question'));
|
2007-08-09 22:44:14 +00:00
|
|
|
}
|
|
|
|
}
|