MDL-20927 fixed module login issue
[moodle.git] / question / move_form.php
blob01a0870a1a8f231ece4819f27d9e2a9bf7cdaa6f
1 <?php // $Id$
3 require_once($CFG->libdir.'/formslib.php');
5 class question_move_form extends moodleform {
7 function definition() {
8 $mform =& $this->_form;
10 $currentcat = $this->_customdata['currentcat'];
11 $contexts = $this->_customdata['contexts'];
12 //--------------------------------------------------------------------------------
14 $mform->addElement('questioncategory', 'category', get_string('category','quiz'), compact('contexts', 'currentcat'));
17 //--------------------------------------------------------------------------------
18 $this->add_action_buttons(true, get_string('categorymoveto', 'quiz'));
19 //--------------------------------------------------------------------------------
20 $mform->addElement('hidden', 'delete', $currentcat);
21 $mform->setType('delete', PARAM_INT);