MDL-32003 xmldb: Use action error for filemodified check instead of structure one...
[moodle.git] / tag / edit_form.php
blob972836755a7fba6a10501df3643d5b94216104b3
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * @package core_tag
20 * @category tag
21 * @copyright 2007 Luiz Cruz <luiz.laydner@gmail.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 if (!defined('MOODLE_INTERNAL')) {
26 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
29 require_once($CFG->dirroot.'/lib/formslib.php');
31 /**
32 * Defines the form for editing tags
34 * @package core_tag
35 * @category tag
36 * @copyright 2007 Luiz Cruz <luiz.laydner@gmail.com>
37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
39 class tag_edit_form extends moodleform {
41 /**
42 * Overrides the abstract moodleform::definition method for defining what the form that is to be
43 * presented to the user.
45 function definition () {
47 $mform =& $this->_form;
49 $mform->addElement('header', 'tag', get_string('description','tag'));
51 $mform->addElement('hidden', 'id');
52 $mform->setType('id', PARAM_INT);
54 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
56 if (has_capability('moodle/tag:manage', $systemcontext)) {
57 $mform->addElement('text', 'rawname', get_string('name', 'tag'),
58 'maxlength="'.TAG_MAX_LENGTH.'" size="'.TAG_MAX_LENGTH.'"');
61 $mform->addElement('editor', 'description_editor', get_string('description', 'tag'), null, $this->_customdata['editoroptions']);
63 if (has_capability('moodle/tag:manage', $systemcontext)) {
64 $mform->addElement('checkbox', 'tagtype', get_string('officialtag', 'tag'));
67 $mform->addElement('html', '<br/><div id="relatedtags-autocomplete-container">');
68 $mform->addElement('textarea', 'relatedtags', get_string('relatedtags','tag'), 'cols="50" rows="3"');
69 $mform->setType('relatedtags', PARAM_TAGLIST);
70 $mform->addElement('html', '<div id="relatedtags-autocomplete"></div>');
71 $mform->addElement('html', '</div>');
73 $this->add_action_buttons(false, get_string('updatetag', 'tag'));