MDL-68525 behat: chrome/switches caps not allowed in Chrome > 81
[moodle.git] / mod / glossary / import_form.php
blob2f37a149e4dad33bdd1978bb35842171a0e35541
1 <?php
2 if (!defined('MOODLE_INTERNAL')) {
3 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
6 require_once($CFG->libdir.'/formslib.php');
8 class mod_glossary_import_form extends moodleform {
10 function definition() {
11 global $CFG;
12 $mform =& $this->_form;
13 $cmid = $this->_customdata['id'];
15 $mform->addElement('filepicker', 'file', get_string('filetoimport', 'glossary'));
16 $mform->addHelpButton('file', 'filetoimport', 'glossary');
17 $options = array();
18 $options['current'] = get_string('currentglossary', 'glossary');
19 $options['newglossary'] = get_string('newglossary', 'glossary');
20 $mform->addElement('select', 'dest', get_string('destination', 'glossary'), $options);
21 $mform->addHelpButton('dest', 'destination', 'glossary');
22 $mform->addElement('checkbox', 'catsincl', get_string('importcategories', 'glossary'));
23 $submit_string = get_string('submit');
24 $mform->addElement('hidden', 'id');
25 $mform->setType('id', PARAM_INT);
26 $this->add_action_buttons(false, $submit_string);