-
Notifications
You must be signed in to change notification settings - Fork 54
/
block_progress.php
executable file
·296 lines (269 loc) · 12.9 KB
/
block_progress.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?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/>.
/**
* Progress Bar block definition
*
* @package contrib
* @subpackage block_progress
* @copyright 2010 Michael de Raadt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(dirname(__FILE__) . '/../../config.php');
require_once($CFG->dirroot.'/blocks/progress/lib.php');
/**
* Progress Bar block class
*
* @copyright 2010 Michael de Raadt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class block_progress extends block_base {
/**
* Sets the block title
*
* @return void
*/
public function init() {
$this->title = get_string('config_default_title', 'block_progress');
}
/**
* we have global config/settings data
*
* @return bool
*/
public function has_config() {
return true;
}
/**
* Controls the block title based on instance configuration
*
* @return bool
*/
public function specialization() {
if (isset($this->config->progressTitle) && trim($this->config->progressTitle) != '') {
$this->title = format_string($this->config->progressTitle);
}
}
/**
* Controls whether multiple instances of the block are allowed on a page
*
* @return bool
*/
public function instance_allow_multiple() {
return !block_progress_on_site_page();
}
/**
* Controls whether the block is configurable
*
* @return bool
*/
public function instance_allow_config() {
return !block_progress_on_site_page();
}
/**
* Defines where the block can be added
*
* @return array
*/
public function applicable_formats() {
return array(
'course-view' => true,
'site' => true,
'mod' => false,
'my' => true
);
}
/**
* Creates the blocks main content
*
* @return string
*/
public function get_content() {
global $USER, $COURSE, $CFG, $OUTPUT, $DB;
// If content has already been generated, don't waste time generating it again.
if ($this->content !== null) {
return $this->content;
}
$this->content = new stdClass;
$this->content->text = '';
$this->content->footer = '';
$blockinstancesonpage = array();
// Guests do not have any progress. Don't show them the block.
if (!isloggedin() or isguestuser()) {
return $this->content;
}
// Draw the multi-bar content for the Dashboard and Front page.
if (block_progress_on_site_page()) {
$courses = enrol_get_my_courses();
$coursenametoshow = get_config('block_progress', 'coursenametoshow') ?: DEFAULT_COURSENAMETOSHOW;
$sql = "SELECT bi.id,
bp.id AS blockpositionid,
COALESCE(bp.region, bi.defaultregion) AS region,
COALESCE(bp.weight, bi.defaultweight) AS weight,
COALESCE(bp.visible, 1) AS visible,
bi.configdata
FROM {block_instances} bi
LEFT JOIN {block_positions} bp ON bp.blockinstanceid = bi.id
AND ".$DB->sql_like('bp.pagetype', ':pagetype', false)."
WHERE bi.blockname = 'progress'
AND bi.parentcontextid = :contextid
ORDER BY region, weight, bi.id";
// Show a message when the user is not enrolled in any courses.
if (($this->page->user_is_editing() || is_siteadmin()) && empty($courses)) {
$this->content->text = get_string('no_courses', 'block_progress');
return $this->content;
}
foreach ($courses as $courseid => $course) {
// Get specific block config and context.
$modules = block_progress_modules_in_use($course->id);
if ($course->visible && !empty($modules)) {
$context = block_progress_get_course_context($course->id);
$params = array('contextid' => $context->id, 'pagetype' => 'course-view-%');
$blockinstances = $DB->get_records_sql($sql, $params);
foreach ($blockinstances as $blockid => $blockinstance) {
$blockinstance->config = unserialize(base64_decode($blockinstance->configdata));
if (!empty($blockinstance->config)) {
$blockinstance->events = block_progress_event_information(
$blockinstance->config,
$modules,
$course->id);
$blockinstance->events = block_progress_filter_visibility($blockinstance->events,
$USER->id, $context, $course);
}
$blockcontext = block_progress_get_block_context($blockid);
if (
!has_capability('block/progress:showbar', $blockcontext) ||
$blockinstance->visible == 0 ||
empty($blockinstance->config) ||
$blockinstance->events == 0 ||
(
!empty($blockinstance->config->group) &&
!has_capability('moodle/site:accessallgroups', $context) &&
!groups_is_member($blockinstance->config->group, $USER->id)
)
) {
unset($blockinstances[$blockid]);
}
}
$blockinstancesonpage = array_merge($blockinstancesonpage, array_keys($blockinstances));
// Output the Progress Bar.
if (!empty($blockinstances)) {
$courselink = new moodle_url('/course/view.php', array('id' => $course->id));
$linktext = HTML_WRITER::tag('h3', s($course->$coursenametoshow));
$this->content->text .= HTML_WRITER::link($courselink, $linktext);
}
foreach ($blockinstances as $blockid => $blockinstance) {
if ($blockinstance->config->progressTitle != '') {
$this->content->text .= HTML_WRITER::tag('p', s(format_string($blockinstance->config->progressTitle)));
}
$attempts = block_progress_attempts($modules,
$blockinstance->config,
$blockinstance->events,
$USER->id,
$course->id);
$this->content->text .= block_progress_bar($modules,
$blockinstance->config,
$blockinstance->events,
$USER->id,
$blockinstance->id,
$attempts,
$course->id);
}
}
}
// Show a message explaining lack of bars, but only while editing is on.
if ($this->page->user_is_editing() && $this->content->text == '') {
$this->content->text = get_string('no_blocks', 'block_progress');
}
}
// Gather content for block on regular course.
else {
// Check if user is in group for block.
if (
!empty($this->config->group) &&
!has_capability('moodle/site:accessallgroups', $this->context) &&
!groups_is_member($this->config->group, $USER->id)
) {
return $this->content;
}
// Check if any activities/resources have been created.
$modules = block_progress_modules_in_use($COURSE->id);
if (empty($modules)) {
if (has_capability('moodle/block:edit', $this->context)) {
$this->content->text .= get_string('no_events_config_message', 'block_progress');
}
return $this->content;
}
// Check if activities/resources have been selected in config.
$events = block_progress_event_information($this->config, $modules, $COURSE->id);
$context = block_progress_get_course_context($COURSE->id);
$events = block_progress_filter_visibility($events, $USER->id, $context);
if ($events === null || $events === 0) {
if (has_capability('moodle/block:edit', $this->context)) {
$this->content->text .= get_string('no_events_message', 'block_progress');
if ($USER->editing) {
$parameters = array('id' => $COURSE->id, 'sesskey' => sesskey(),
'bui_editid' => $this->instance->id);
$url = new moodle_url('/course/view.php', $parameters);
$label = get_string('selectitemstobeadded', 'block_progress');
$this->content->text .= $OUTPUT->single_button($url, $label);
if ($events === 0) {
$url->param('turnallon', '1');
$label = get_string('addallcurrentitems', 'block_progress');
$this->content->text .= $OUTPUT->single_button($url, $label);
}
}
}
return $this->content;
} else if (empty($events)) {
if (has_capability('moodle/block:edit', $this->context)) {
$this->content->text .= get_string('no_visible_events_message', 'block_progress');
}
return $this->content;
}
// Display progress bar.
if (has_capability('block/progress:showbar', $this->context)) {
$attempts = block_progress_attempts($modules, $this->config, $events, $USER->id, $COURSE->id);
$this->content->text .= block_progress_bar($modules,
$this->config,
$events,
$USER->id,
$this->instance->id,
$attempts,
$COURSE->id);
}
$blockinstancesonpage = array($this->instance->id);
// Allow teachers to access the overview page.
if (has_capability('block/progress:overview', $this->context)) {
$parameters = array('progressbarid' => $this->instance->id, 'courseid' => $COURSE->id);
$url = new moodle_url('/blocks/progress/overview.php', $parameters);
$label = get_string('overview', 'block_progress');
$options = array('class' => 'overviewButton');
$this->content->text .= $OUTPUT->single_button($url, $label, 'post', $options);
}
}
// Organise access to JS.
$jsmodule = array(
'name' => 'block_progress',
'fullpath' => '/blocks/progress/module.js',
'requires' => array(),
'strings' => array(),
);
$arguments = array($blockinstancesonpage, array($USER->id));
$this->page->requires->js_init_call('M.block_progress.setupScrolling', array(), false, $jsmodule);
$this->page->requires->js_init_call('M.block_progress.init', $arguments, false, $jsmodule);
return $this->content;
}
}