forked from oohoo/moodle-format_tabtopics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat.php
More file actions
390 lines (326 loc) · 15.3 KB
/
format.php
File metadata and controls
390 lines (326 loc) · 15.3 KB
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<?php
/**
* *************************************************************************
* * OOHOO Tab topics Course format **
* *************************************************************************
* @package format **
* @subpackage tabtopics **
* @name tabtopics **
* @copyright oohoo.biz **
* @link http://oohoo.biz **
* @author Nicolas Bretin **
* @author Braedan Jongerius **
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later **
* *************************************************************************
* ************************************************************************ */
defined('MOODLE_INTERNAL') || die();
require_once($CFG->libdir . '/filelib.php');
require_once($CFG->libdir . '/completionlib.php');
$PAGE->requires->js('/course/format/tabtopics/module.js');
// make sure all sections are created
$course = course_get_format($course)->get_course();
course_create_sections_if_missing($course, range(0, $course->numsections));
$modinfo = get_fast_modinfo($course);
$sections = $modinfo->get_section_info_all();
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module'))
{
$context = context_course::instance($course->id);
}
else
{
$context = get_context_instance(CONTEXT_COURSE, $course->id);
}
$tabtopicsrenderer = $PAGE->get_renderer('format_tabtopics');
$corerenderer = $PAGE->get_renderer('core', 'course');
$isZeroTab = course_get_format($course)->is_section_zero_tab();
$is_remember_last_tab_session = course_get_format($course)->is_remember_last_tab_session();
$is_tabdisplay_vertical = course_get_format($course)->is_tabdisplay_vertical();
$topic = optional_param('topic', -1, PARAM_INT);
$jsmodule = array(
'name' => 'weekstabs',
'fullpath' => '/course/format/tabtopics/module.js',
'requires' => array('base', 'node', 'json', 'io', 'cookie')
);
//THIS IS THE CODE FOR GENERATING THE TABVIEW. ITS ONLY USED DURING NON EDITING
if (!$PAGE->user_is_editing()) {
echo '<script type="text/javascript">
var is_remember_last_tab_session = ' . ($is_remember_last_tab_session ? 'true' : 'false') . ';
</script>';
echo '
<style type="text/css" media="screen">
/* <![CDATA[ */
@import url("' . $CFG->wwwroot . '/course/format/tabtopics/tabtop.css");
/* ]]> */
</style>
';
if ($is_tabdisplay_vertical) {
echo '
<style type="text/css" media="screen">
/* <![CDATA[ */
@import url("' . $CFG->wwwroot . '/course/format/tabtopics/displaytabs_vertical.css");
/* ]]> */
</style>
';
}
echo '
<!--[if IE]>
<div id = "maincontainer" style="display:">
<![endif]-->
<!--[if !IE]> <-->
<div id = "maincontainer" style="display:none">
<!--> <![endif]-->
';
$streditsummary = get_string('editsummary');
$stradd = get_string('add');
$stractivities = get_string('activities');
$strshowalltopics = get_string('showalltopics', 'format_tabtopics');
$strtopic = get_string('topic');
$strgroups = get_string('groups');
$strgroupmy = get_string('groupmy');
// Print the Your progress icon if the track completion is enabled
$completioninfo = new completion_info($course);
echo $completioninfo->display_help_icon();
/// If currently moving a file then show the current clipboard
//not too sure what this does
if (ismoving($course->id)) {
// Note, an ordered list would confuse - "1" could be the clipboard or summary.
echo "<ul class='topicstabs'>\n";
$stractivityclipboard = strip_tags(get_string('activityclipboard', '', $USER->activitycopyname));
$strcancel = get_string('cancel');
echo '<li class="clipboard">';
echo $stractivityclipboard . ' (<a href="mod.php?cancelcopy=true&sesskey=' . sesskey() . '">' . $strcancel . '</a>)';
echo "</li>\n";
echo '</ul>';
}
//Insert the section 0
$section = 0;
$thissection = $sections[$section];
if ($thissection->summary or $thissection->sequence) {
echo '<ul class="sectionul"><li id="sectiontd-0" class="section main yui3-dd-drop">';
echo '<div class="content">';
if (!empty($thissection->name)) {
echo $OUTPUT->heading(format_string($thissection->name, true, array('context' => $context)), 3, 'sectionname');
}
echo '<div class="summary">';
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module')) {
$coursecontext = context_course::instance($course->id);
} else {
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
}
$summarytext = file_rewrite_pluginfile_urls($thissection->summary, 'pluginfile.php', $coursecontext->id, 'course', 'section', $thissection->id);
$summaryformatoptions = new stdClass;
$summaryformatoptions->noclean = true;
$summaryformatoptions->overflowdiv = true;
echo format_text($summarytext, $thissection->summaryformat, $summaryformatoptions);
echo '</div>';
//if section is not a tab, display as a header
if (!$isZeroTab) {
echo $corerenderer->course_section_cm_list($course, $thissection);
}
echo '</div>';
echo "</li>";
}
//if section is a tab we want to start sections at 0, otherwise
//section 0 is a header and we start at section 1
$start_tab = $isZeroTab ? 0 : 1;
/// Now all the normal modules by topic
/// Everything below uses "section" terminology - each "section" is a topic.
$timenow = time();
$section = $start_tab;
$sectionmenu = array();
$num = $start_tab;
echo '<div id="sections">'; //this is the first div that yui looks at, top node
echo '<ul>'; //begining of the unordered list
while ($section <= $course->numsections) {
if (!empty($sections[$section])) {
$thissection = $sections[$section];
} else {
$thissection = new stdClass;
$thissection->course = $course->id; // Create a new section structure
$thissection->section = $section;
$thissection->name = null;
$thissection->summary = '';
$thissection->summaryformat = FORMAT_HTML;
$thissection->visible = 1;
}
//check if the current section is visible to user
$unaval_override = course_get_format($course)->is_unavailable_override($thissection);
//check if override is turned on (informs user section not avaliable)
$user_access = course_get_format($course)->check_user_access($thissection);
//if don't have access AND override "not avaliable" message not on - slip tab
if (!$user_access && !$unaval_override) {
$section++;
continue;
}
//the default action is to set the name of each topic to null.
$secname = $thissection->name;
//this will set the name of undefined sections to a number.
if ($secname == null) {
$secname = $secname . $num;
$num++;
}
if (has_capability('moodle/course:viewhiddensections', $context) || $thissection->visible || (!$thissection->visible && $unaval_override)) {
// Hidden for students
if ($course->marker == $section) {
echo '<li><a href="#section-' . $section . '" id="marker">' . $secname . '</a></li>';
} else {
echo '<li><a href="#section-' . $section . '">' . $secname . '</a></li>';
}
}
$section++;
}
echo '</ul>';
echo '<div>'; //should be the div for content.
//this is the actual bits that we need.
$section = $start_tab;
$sectionmenu = array();
$num = $start_tab;
while ($section <= $course->numsections) {
if (!empty($sections[$section])) {
$thissection = $sections[$section];
} else {
$thissection = new stdClass;
$thissection->course = $course->id; // Create a new section structure
$thissection->section = $section;
$thissection->name = null;
$thissection->summary = '';
$thissection->summaryformat = FORMAT_HTML;
$thissection->visible = 1;
$thissection->id = $DB->insert_record('course_sections', $thissection);
}
//check if the current section is visible to user
$unaval_override = course_get_format($course)->is_unavailable_override($thissection);
//check if override is turned on (informs user section not avaliable)
$user_access = course_get_format($course)->check_user_access($thissection);
//if don't have access AND override "not avaliable" message not on - slip tab
if (!$user_access && !$unaval_override) {
$section++;
continue;
}
//if user doesn't have access, but override is present - display not avaliable message
if (!$user_access && $unaval_override) {
echo '<div id="section-' . $section . '">';
echo '<div class="right side"></div>';
echo '<div class="content">';
echo $tabtopicsrenderer->section_hidden($section);
echo '</div>';
echo '</div>';
$section++;
continue;
}
$showsection = (has_capability('moodle/course:viewhiddensections', $context) or $thissection->visible or !$course->hiddensections);
if (!empty($displaysection) and $displaysection != $section) { // Check this topic is visible
if ($showsection) {
$sectionmenu[$section] = get_section_name($course, $thissection);
}
$section++;
continue;
}
if ($showsection) {
$currenttopic = ($course->marker == $section);
$currenttext = '';
if (!$thissection->visible) {
$sectionstyle = ' hidden';
} else if ($currenttopic) {
$sectionstyle = ' current';
} else {
$sectionstyle = '';
}
//the default action is to set the name of each topic to null.
$secname = $thissection->name;
//this will set the name of undefined sections to a number.
if ($secname == null) {
$secname = $secname . $num;
$num++;
}
if (has_capability('moodle/course:viewhiddensections', $context) || $thissection->visible) {
echo '<div id="section-' . $section . '">';
// Note, 'right side' is BEFORE content.
echo '<div class="right side">';
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module')) {
$context_check = context_course::instance($course->id);
} else {
$context_check = get_context_instance(CONTEXT_COURSE, $course->id);
}
echo '</div>';
echo '<div class="content">';
if (!has_capability('moodle/course:viewhiddensections', $context) and !$thissection->visible) { // Hidden for students
echo get_string('notavailable');
} else {
$display = '';
//display section if avaliable
if (!is_null($thissection->name))
$display = $thissection->name;
//If not visible - show icon for people who can see it
if (!$thissection->visible)
$display .= "<img style='float:right' src='" . $OUTPUT->pix_url('i/show') . "'/>";
//output header for section
echo $OUTPUT->heading($display, 3, 'sectionname');
echo '<div class="summary">';
if ($thissection->summary) {
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module')) {
$coursecontext = context_course::instance($course->id);
} else {
$coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
}
$summarytext = file_rewrite_pluginfile_urls($thissection->summary, 'pluginfile.php', $coursecontext->id, 'course', 'section', $thissection->id);
$summaryformatoptions = new stdClass();
$summaryformatoptions->noclean = true;
$summaryformatoptions->overflowdiv = true;
echo format_text($summarytext, $thissection->summaryformat, $summaryformatoptions);
} else {
echo ' ';
}
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module')) {
$context_check = context_course::instance($course->id);
} else {
$context_check = get_context_instance(CONTEXT_COURSE, $course->id);
}
echo '</div>';
echo $corerenderer->course_section_cm_list($course, $section);
echo '<br />';
}
//echo a conditional message if avaliable
echo $tabtopicsrenderer->section_availability_message($thissection, has_capability('moodle/course:viewhiddensections', $context));
echo '</div>';
echo '</div>';
}
}
unset($sections[$section]);
$section++;
}
echo '</div>';
echo '</div>';
echo '</div>';
//Replace get_context_instance by the class for moodle 2.6+
if(class_exists('context_module')) {
$context_check = context_course::instance($course->id);
} else {
$context_check = get_context_instance(CONTEXT_COURSE, $course->id);
}
echo "</ul>\n";
$PAGE->requires->js_init_call('M.tabtopics.init', array($course->id, $isZeroTab), false, $jsmodule);
if (!empty($sectionmenu)) {
$select = new single_select(new moodle_url('/course/view.php', array('id' => $course->id)), 'topic', $sectionmenu);
$select->label = get_string('jumpto');
$select->class = 'jumpmenu';
$select->formid = 'sectionmenu';
echo $OUTPUT->render($select);
}
} else {
//this is the editing window
// If Moodle 2.3 or more Generate the sections like the topics
$renderer = $PAGE->get_renderer('format_tabtopics');
if (!empty($displaysection)) {
$renderer->print_single_section_page($course, $sections, $mods, $modnames, $modnamesused, $displaysection);
} else {
$renderer->print_multiple_section_page($course, $sections, $mods, $modnames, $modnamesused);
}
// Include course format js module
$PAGE->requires->js('/course/format/topics/format.js');
}