2009-11-04 11:57:52 +00:00
|
|
|
<?php
|
2011-02-21 18:00:15 +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 form for editing question categories.
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
2007-08-09 22:44:14 +00:00
|
|
|
require_once($CFG->libdir.'/formslib.php');
|
|
|
|
|
2011-02-21 18:00:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form for editing qusetions categories (name, description, etc.)
|
|
|
|
*
|
|
|
|
* @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_category_edit_form extends moodleform {
|
|
|
|
|
2011-03-23 16:22:25 +00:00
|
|
|
protected function definition() {
|
2008-06-06 14:43:15 +00:00
|
|
|
global $CFG, $DB;
|
2011-02-21 18:00:15 +00:00
|
|
|
$mform = $this->_form;
|
2007-08-09 22:44:14 +00:00
|
|
|
|
|
|
|
$contexts = $this->_customdata['contexts'];
|
|
|
|
$currentcat = $this->_customdata['currentcat'];
|
2011-02-28 11:03:12 +00:00
|
|
|
|
2011-02-23 18:53:50 +00:00
|
|
|
$mform->addElement('header', 'categoryheader', get_string('addcategory', 'question'));
|
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
|
|
|
$questioncategoryel = $mform->addElement('questioncategory', 'parent', get_string('parentcategory', 'question'),
|
2007-08-09 22:44:14 +00:00
|
|
|
array('contexts'=>$contexts, 'top'=>true, 'currentcat'=>$currentcat, 'nochildrenof'=>$currentcat));
|
|
|
|
$mform->setType('parent', PARAM_SEQUENCE);
|
2008-11-27 11:50:29 +00:00
|
|
|
if (question_is_only_toplevel_category_in_context($currentcat)) {
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->hardFreeze('parent');
|
|
|
|
}
|
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('parent', 'parentcategory', 'question');
|
2007-08-09 22:44:14 +00:00
|
|
|
|
2011-02-28 11:03:12 +00:00
|
|
|
$mform->addElement('text', 'name', get_string('name'),'maxlength="254" size="50"');
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->setDefault('name', '');
|
2011-02-23 18:53:50 +00:00
|
|
|
$mform->addRule('name', get_string('categorynamecantbeblank', 'question'), 'required', null, 'client');
|
2012-05-11 15:50:09 +08:00
|
|
|
$mform->setType('name', PARAM_TEXT);
|
2007-08-09 22:44:14 +00:00
|
|
|
|
2011-02-23 18:53:50 +00:00
|
|
|
$mform->addElement('textarea', 'info', get_string('categoryinfo', 'question'), array('rows'=> '10', 'cols'=>'45'));
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->setDefault('info', '');
|
2012-05-11 15:50:09 +08:00
|
|
|
$mform->setType('info', PARAM_TEXT);
|
2011-02-28 11:03:12 +00:00
|
|
|
|
2011-02-23 18:53:50 +00:00
|
|
|
$this->add_action_buttons(false, get_string('addcategory', 'question'));
|
2011-02-28 11:03:12 +00:00
|
|
|
|
2007-08-09 22:44:14 +00:00
|
|
|
$mform->addElement('hidden', 'id', 0);
|
|
|
|
$mform->setType('id', PARAM_INT);
|
|
|
|
}
|
|
|
|
}
|
2009-11-04 11:57:52 +00:00
|
|
|
|