Merge branch 'wip-MDL-31597-25' of git://github.com/abgreeve/moodle into MOODLE_25_STABLE
[moodle.git] / tag / edit.php
blobe0c80f807d08e52cd0cef509420c546efdc893e4
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 require_once('../config.php');
26 require_once('lib.php');
27 require_once('edit_form.php');
29 $tag_id = optional_param('id', 0, PARAM_INT);
30 $tag_name = optional_param('tag', '', PARAM_TAG);
32 require_login();
34 if (empty($CFG->usetags)) {
35 print_error('tagsaredisabled', 'tag');
38 //Editing a tag requires moodle/tag:edit capability
39 $systemcontext = context_system::instance();
40 require_capability('moodle/tag:edit', $systemcontext);
42 if ($tag_name) {
43 $tag = tag_get('name', $tag_name, '*');
44 } else if ($tag_id) {
45 $tag = tag_get('id', $tag_id, '*');
48 if (empty($tag)) {
49 redirect($CFG->wwwroot.'/tag/search.php');
52 $PAGE->set_url('/tag/index.php', array('id' => $tag->id));
53 $PAGE->set_subpage($tag->id);
54 $PAGE->set_context($systemcontext);
55 $PAGE->set_blocks_editing_capability('moodle/tag:editblocks');
56 $PAGE->set_pagelayout('base');
58 $tagname = tag_display_name($tag);
60 // set the relatedtags field of the $tag object that will be passed to the form
61 $tag->relatedtags = tag_get_related_tags_csv(tag_get_related_tags($tag->id, TAG_RELATED_MANUAL), TAG_RETURN_TEXT);
63 if (can_use_html_editor()) {
64 $options = new stdClass();
65 $options->smiley = false;
66 $options->filter = false;
68 // convert and remove any XSS
69 $tag->description = format_text($tag->description, $tag->descriptionformat, $options);
70 $tag->descriptionformat = FORMAT_HTML;
73 $errorstring = '';
75 $editoroptions = array(
76 'maxfiles' => EDITOR_UNLIMITED_FILES,
77 'maxbytes' => $CFG->maxbytes,
78 'trusttext' => false,
79 'context' => $systemcontext
81 $tag = file_prepare_standard_editor($tag, 'description', $editoroptions, $systemcontext, 'tag', 'description', $tag->id);
83 $tagform = new tag_edit_form(null, compact('editoroptions'));
84 if ( $tag->tagtype == 'official' ) {
85 $tag->tagtype = '1';
86 } else {
87 $tag->tagtype = '0';
90 $tagform->set_data($tag);
92 // If new data has been sent, update the tag record
93 if ($tagnew = $tagform->get_data()) {
95 if (has_capability('moodle/tag:manage', $systemcontext)) {
96 if (($tag->tagtype != 'default') && (!isset($tagnew->tagtype) || ($tagnew->tagtype != '1'))) {
97 tag_type_set($tag->id, 'default');
99 } elseif (($tag->tagtype != 'official') && ($tagnew->tagtype == '1')) {
100 tag_type_set($tag->id, 'official');
104 if (!has_capability('moodle/tag:manage', $systemcontext) && !has_capability('moodle/tag:edit', $systemcontext)) {
105 unset($tagnew->name);
106 unset($tagnew->rawname);
108 } else { // They might be trying to change the rawname, make sure it's a change that doesn't affect name
109 $norm = tag_normalize($tagnew->rawname, TAG_CASE_LOWER);
110 $tagnew->name = array_shift($norm);
112 if ($tag->name != $tagnew->name) { // The name has changed, let's make sure it's not another existing tag
113 if (tag_get_id($tagnew->name)) { // Something exists already, so flag an error
114 $errorstring = s($tagnew->rawname).': '.get_string('namesalreadybeeingused', 'tag');
119 if (empty($errorstring)) { // All is OK, let's save it
121 $tagnew = file_postupdate_standard_editor($tagnew, 'description', $editoroptions, $systemcontext, 'tag', 'description', $tag->id);
123 tag_description_set($tag_id, $tagnew->description, $tagnew->descriptionformat);
125 $tagnew->timemodified = time();
127 if (has_capability('moodle/tag:manage', $systemcontext)) {
128 // rename tag
129 if(!tag_rename($tag->id, $tagnew->rawname)) {
130 print_error('errorupdatingrecord', 'tag');
134 //log tag changes activity
135 //if tag name exist from form, renaming is allow. record log action as rename
136 //otherwise, record log action as update
137 if (isset($tagnew->name) && ($tag->name != $tagnew->name)){
138 add_to_log($COURSE->id, 'tag', 'update', 'index.php?id='. $tag->id, $tag->name . '->'. $tagnew->name);
140 } elseif ($tag->description != $tagnew->description) {
141 add_to_log($COURSE->id, 'tag', 'update', 'index.php?id='. $tag->id, $tag->name);
144 //updated related tags
145 tag_set('tag', $tagnew->id, explode(',', trim($tagnew->relatedtags)));
146 //print_object($tagnew); die();
148 redirect($CFG->wwwroot.'/tag/index.php?tag='.rawurlencode($tag->name)); // must use $tag here, as the name isn't in the edit form
152 $PAGE->navbar->add(get_string('tags', 'tag'), new moodle_url('/tag/search.php'));
153 $PAGE->navbar->add($tagname);
154 $PAGE->navbar->add(get_string('edit'));
155 $PAGE->set_title(get_string('tag', 'tag') . ' - '. $tagname);
156 $PAGE->set_heading($COURSE->fullname);
157 echo $OUTPUT->header();
158 echo $OUTPUT->heading($tagname, 2);
160 if (!empty($errorstring)) {
161 echo $OUTPUT->notification($errorstring);
164 $tagform->display();
166 if (ajaxenabled()) {
167 $PAGE->requires->js('/tag/tag.js');
168 $PAGE->requires->js_function_call('init_tag_autocomplete', null, true);
170 echo $OUTPUT->footer();