. /** * @package core * @subpackage tag * @copyright 2007 Luiz Cruz * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ if (!defined('MOODLE_INTERNAL')) { die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page } require_once($CFG->dirroot.'/lib/formslib.php'); class tag_edit_form extends moodleform { function definition () { $mform =& $this->_form; $mform->addElement('header', 'tag', get_string('description','tag')); $mform->addElement('hidden', 'id'); $mform->setType('id', PARAM_INT); $systemcontext = get_context_instance(CONTEXT_SYSTEM); if (has_capability('moodle/tag:manage', $systemcontext)) { $mform->addElement('text', 'rawname', get_string('name', 'tag'), 'maxlength="'.TAG_MAX_LENGTH.'" size="'.TAG_MAX_LENGTH.'"'); } $mform->addElement('editor', 'description_editor', get_string('description', 'tag'), null, $this->_customdata['editoroptions']); if (has_capability('moodle/tag:manage', $systemcontext)) { $mform->addElement('checkbox', 'tagtype', get_string('officialtag', 'tag')); } $mform->addElement('html', '
'); $mform->addElement('textarea', 'relatedtags', get_string('relatedtags','tag'), 'cols="50" rows="3"'); $mform->setType('relatedtags', PARAM_TAGLIST); $mform->addElement('html', '
'); $mform->addElement('html', '
'); $this->add_action_buttons(false, get_string('updatetag', 'tag')); } }