2 // This file is part of Moodle - http://moodle.org/
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.
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 * Editing badge details, criteria, messages
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->dirroot
. '/badges/edit_form.php');
31 $badgeid = required_param('id', PARAM_INT
);
32 $action = optional_param('action', 'details', PARAM_TEXT
);
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);
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);
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');
75 $badge->message
= clean_text($badge->message
, FORMAT_HTML
);
76 $editoroptions = array(
81 'context' => $context,
85 $badge = file_prepare_standard_editor($badge, 'message', $editoroptions, $context);
87 $form_class = 'edit_' . $action . '_form';
88 $form = new $form_class($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 == 'details') {
94 $badge->name
= $data->name
;
95 $badge->description
= $data->description
;
96 $badge->usermodified
= $USER->id
;
97 $badge->issuername
= $data->issuername
;
98 $badge->issuerurl
= $data->issuerurl
;
99 $badge->issuercontact
= $data->issuercontact
;
100 $badge->expiredate
= ($data->expiry
== 1) ?
$data->expiredate
: null;
101 $badge->expireperiod
= ($data->expiry
== 2) ?
$data->expireperiod
: null;
103 // Need to unset message_editor options to avoid errors on form edit.
104 unset($badge->messageformat
);
105 unset($badge->message_editor
);
107 if ($badge->save()) {
108 badges_process_badge_image($badge, $form->save_temp_file('image'));
109 $form->set_data($badge);
110 $statusmsg = get_string('changessaved');
112 $errormsg = get_string('error:save', 'badges');
114 } else if ($action == 'message') {
115 // Calculate next message cron if form data is different from original badge data.
116 if ($data->notification
!= $badge->notification
) {
117 if ($data->notification
> BADGE_MESSAGE_ALWAYS
) {
118 $badge->nextcron
= badges_calculate_message_schedule($data->notification
);
120 $badge->nextcron
= null;
124 $badge->message
= clean_text($data->message_editor
['text'], FORMAT_HTML
);
125 $badge->messagesubject
= $data->messagesubject
;
126 $badge->notification
= $data->notification
;
127 $badge->attachment
= $data->attachment
;
129 unset($badge->messageformat
);
130 unset($badge->message_editor
);
131 if ($badge->save()) {
132 $statusmsg = get_string('changessaved');
134 $errormsg = get_string('error:save', 'badges');
139 echo $OUTPUT->header();
140 echo $OUTPUT->heading(print_badge_image($badge, $context, 'small') . ' ' . $badge->name
);
142 if ($errormsg !== '') {
143 echo $OUTPUT->notification($errormsg);
145 } else if ($statusmsg !== '') {
146 echo $OUTPUT->notification($statusmsg, 'notifysuccess');
149 echo $output->print_badge_status_box($badge);
150 $output->print_badge_tabs($badgeid, $context, $action);
154 echo $OUTPUT->footer();