MDL-66481 forum: Remove the YUI subscribe link
[moodle.git] / badges / edit.php
blob2307d0d1e76ac7803ae9953cee57c46ce57c0475
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/>.
17 /**
18 * Editing badge details, criteria, messages
20 * @package core
21 * @subpackage badges
22 * @copyright 2012 onwards Totara Learning Solutions Ltd {@link http://www.totaralms.com/}
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 * @author Yuliya Bozhko <yuliya.bozhko@totaralms.com>
27 require_once(__DIR__ . '/../config.php');
28 require_once($CFG->libdir . '/badgeslib.php');
29 require_once($CFG->libdir . '/filelib.php');
31 $badgeid = required_param('id', PARAM_INT);
32 $action = optional_param('action', 'badge', PARAM_TEXT);
34 require_login();
36 if (empty($CFG->enablebadges)) {
37 print_error('badgesdisabled', 'badges');
40 $badge = new badge($badgeid);
41 $context = $badge->get_context();
42 $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type));
44 if ($action == 'message') {
45 require_capability('moodle/badges:configuremessages', $context);
46 } else {
47 require_capability('moodle/badges:configuredetails', $context);
50 if ($badge->type == BADGE_TYPE_COURSE) {
51 if (empty($CFG->badges_allowcoursebadges)) {
52 print_error('coursebadgesdisabled', 'badges');
54 require_login($badge->courseid);
55 $navurl = new moodle_url('/badges/index.php', array('type' => $badge->type, 'id' => $badge->courseid));
56 $PAGE->set_pagelayout('incourse');
57 navigation_node::override_active_url($navurl);
58 } else {
59 $PAGE->set_pagelayout('admin');
60 navigation_node::override_active_url($navurl, true);
63 $currenturl = new moodle_url('/badges/edit.php', array('id' => $badge->id, 'action' => $action));
65 $PAGE->set_context($context);
66 $PAGE->set_url($currenturl);
67 $PAGE->set_heading($badge->name);
68 $PAGE->set_title($badge->name);
69 $PAGE->navbar->add($badge->name);
71 $output = $PAGE->get_renderer('core', 'badges');
72 $statusmsg = '';
73 $errormsg = '';
75 $badge->message = clean_text($badge->message, FORMAT_HTML);
76 $editoroptions = array(
77 'subdirs' => 0,
78 'maxbytes' => 0,
79 'maxfiles' => 0,
80 'changeformat' => 0,
81 'context' => $context,
82 'noclean' => false,
83 'trusttext' => false
85 $badge = file_prepare_standard_editor($badge, 'message', $editoroptions, $context);
87 $formclass = '\core_badges\form' . '\\' . $action;
88 $form = new $formclass($currenturl, array('badge' => $badge, 'action' => $action, 'editoroptions' => $editoroptions));
90 if ($form->is_cancelled()) {
91 redirect(new moodle_url('/badges/overview.php', array('id' => $badgeid)));
92 } else if ($form->is_submitted() && $form->is_validated() && ($data = $form->get_data())) {
93 if ($action == 'badge') {
94 $badge->name = $data->name;
95 $badge->version = trim($data->version);
96 $badge->language = $data->language;
97 $badge->description = $data->description;
98 $badge->imageauthorname = $data->imageauthorname;
99 $badge->imageauthoremail = $data->imageauthoremail;
100 $badge->imageauthorurl = $data->imageauthorurl;
101 $badge->imagecaption = $data->imagecaption;
102 $badge->usermodified = $USER->id;
103 $badge->issuername = $data->issuername;
104 $badge->issuerurl = $data->issuerurl;
105 $badge->issuercontact = $data->issuercontact;
106 $badge->expiredate = ($data->expiry == 1) ? $data->expiredate : null;
107 $badge->expireperiod = ($data->expiry == 2) ? $data->expireperiod : null;
109 // Need to unset message_editor options to avoid errors on form edit.
110 unset($badge->messageformat);
111 unset($badge->message_editor);
113 if ($badge->save()) {
114 badges_process_badge_image($badge, $form->save_temp_file('image'));
115 $form->set_data($badge);
116 $statusmsg = get_string('changessaved');
117 } else {
118 $errormsg = get_string('error:save', 'badges');
120 } else if ($action == 'message') {
121 // Calculate next message cron if form data is different from original badge data.
122 if ($data->notification != $badge->notification) {
123 if ($data->notification > BADGE_MESSAGE_ALWAYS) {
124 $badge->nextcron = badges_calculate_message_schedule($data->notification);
125 } else {
126 $badge->nextcron = null;
130 $badge->message = clean_text($data->message_editor['text'], FORMAT_HTML);
131 $badge->messagesubject = $data->messagesubject;
132 $badge->notification = $data->notification;
133 $badge->attachment = $data->attachment;
135 unset($badge->messageformat);
136 unset($badge->message_editor);
137 if ($badge->save()) {
138 $statusmsg = get_string('changessaved');
139 } else {
140 $errormsg = get_string('error:save', 'badges');
145 echo $OUTPUT->header();
146 echo $OUTPUT->heading(print_badge_image($badge, $context, 'small') . ' ' . $badge->name);
148 if ($errormsg !== '') {
149 echo $OUTPUT->notification($errormsg);
151 } else if ($statusmsg !== '') {
152 echo $OUTPUT->notification($statusmsg, 'notifysuccess');
155 echo $output->print_badge_status_box($badge);
156 $output->print_badge_tabs($badgeid, $context, $action);
158 $form->display();
160 echo $OUTPUT->footer();