-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.php
148 lines (108 loc) · 4.44 KB
/
action.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?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/>.
/**
* socialwall course format. Display the whole course as "socialwall" made of modules.
*
* @package format_socialwall
* @copyright 2014 Andreas Wagner, Synergy Learning
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(dirname(__FILE__) . '../../../../config.php');
$courseid = required_param('courseid', PARAM_INT); // ... course id.
$action = required_param('action', PARAM_ALPHA);
// User has clicked the cancel-button in form.
if (isset($_REQUEST['cancel'])) {
$action = 'cancel';
}
$course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);
require_sesskey(); // Gotta have the sesskey.
require_course_login($course);
// ...start setting up the page.
$context = context_course::instance($course->id, MUST_EXIST);
// ... add all the theme settings.
$course = course_get_format($course)->get_course();
$PAGE->set_context($context);
$PAGE->set_url(new moodle_url('/course/format/socialwall/action.php', array('id' => $courseid)));
require_once($CFG->dirroot . '/course/format/socialwall/locallib.php');
$redirecturl = new moodle_url('/course/view.php', array('id' => $course->id));
switch ($action) {
case 'savepost' :
case 'updatepost':
$posts = \format_socialwall\local\posts::instance($course->id);
$postform = $posts->get_post_form();
if ($data = $postform->get_data()) {
// User have turned editing on or off.
if (isset($data->turneditingon)) {
if ($PAGE->user_allowed_editing()) {
$USER->editing = 1;
}
}
if (isset($data->turneditoron)) {
$redirecturl = new moodle_url('/course/view.php', array('id' => $course->id, 'loadposteditor' => 1));
}
if (isset($data->turneditoroff)) {
$redirecturl = new moodle_url('/course/view.php', array('id' => $course->id, 'loadposteditor' => 0));
}
// User have submitted a post.
if (isset($data->submitbutton)) {
// Suitable capability checks are made in save_post!
$posts->save_post($data, $course);
}
}
redirect($redirecturl);
break;
case 'deletepost' :
$pid = required_param('pid', PARAM_INT);
$formatsociallwallposts = \format_socialwall\local\posts::instance($course->id);
// Suitable capability checks are made in delete_post!
$formatsociallwallposts->delete_post($pid);
redirect($redirecturl);
break;
case 'likepost' :
\format_socialwall\local\action_handler::like_post($course);
redirect($redirecturl);
break;
case 'makesticky' :
$posts = \format_socialwall\local\posts::instance($course->id);
// Suitable capability checks are made in delete_post!
$posts->makesticky();
redirect($redirecturl);
break;
case 'lockpost' :
\format_socialwall\local\action_handler::lock_post($course);
redirect($redirecturl);
break;
case 'postcomment' :
\format_socialwall\local\action_handler::post_comment($course);
redirect($redirecturl);
break;
case 'deletecomment' :
\format_socialwall\local\action_handler::delete_comment();
redirect($redirecturl);
break;
case 'cancel' :
case 'resetfilter' :
$cache = \cache::make('format_socialwall', 'timelinefilter');
$cache->purge();
$cache = \cache::make('format_socialwall', 'postformparams');
$cache->purge();
$cache = cache::make('format_socialwall', 'attachedrecentactivities');
$cache->purge();
redirect($redirecturl);
break;
default :
print_error('unknown action: ' . $action);
}