-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeletenote.php
71 lines (58 loc) · 2.96 KB
/
deletenote.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Delete icontent page.
*
* @package mod_icontent
* @copyright 2016-2015 Leo Santos {@link http://github.com/leorenis}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require(dirname(__FILE__).'/../../config.php');
require_once(dirname(__FILE__).'/locallib.php');
use mod_icontent\notes\icontent_note_options;
$id = required_param('id', PARAM_INT); // Course Module ID.
$pnid = required_param('pnid', PARAM_INT); // Page note ID.
$confirm = optional_param('confirm', 0, PARAM_BOOL);
$cm = get_coursemodule_from_id('icontent', $id, 0, false, MUST_EXIST);
$course = $DB->get_record('course', ['id' => $cm->course], '*', MUST_EXIST);
$icontent = $DB->get_record('icontent', ['id' => $cm->instance], '*', MUST_EXIST);
$pagenote = $DB->get_record('icontent_pages_notes', ['id' => $pnid], '*', MUST_EXIST);
require_login($course, false, $cm);
require_sesskey();
$context = context_module::instance($cm->id);
icontent_user_can_remove_note($pagenote, $context);
$PAGE->set_url('/mod/icontent/deletenote.php', ['id' => $id, 'pnid' => $pnid]);
// Header and strings.
$PAGE->set_title($icontent->name);
$PAGE->set_heading($course->fullname);
// Form processing.
if ($confirm) {
$notes = icontent_get_notes_daughters($pagenote->id);
icontent_note_options::icontent_remove_notes($pagenote->pageid, $pagenote->id);
\mod_icontent\event\note_deleted::create_from_note($icontent, $context, $pagenote)->trigger();
$url = new moodle_url('/mod/icontent/view.php', ['id' => $cm->id, 'pageid' => $pagenote->pageid]);
redirect($url, get_string('msgsucessexclusion', 'mod_icontent'));
}
echo $OUTPUT->header();
echo $OUTPUT->heading($icontent->name." : ".get_string('removenotes', 'mod_icontent'));
// Operation not confirmed.
$notes = icontent_get_notes_daughters($pagenote->id);
$strconfirm = get_string('confpagenotedelete', 'mod_icontent', count($notes));
$continue = new moodle_url('/mod/icontent/deletenote.php', ['id' => $cm->id, 'pnid' => $pagenote->id, 'confirm' => 1]);
$cancel = new moodle_url('/mod/icontent/view.php', ['id' => $cm->id, 'pageid' => $pagenote->pageid]);
$listreplies = icontent_make_list_group_notesdaughters($notes);
echo $OUTPUT->confirm("<p>$strconfirm</p><blockquote>$pagenote->comment</blockquote>". $listreplies, $continue, $cancel);
echo $OUTPUT->footer();