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);