-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.php
110 lines (92 loc) · 3.62 KB
/
index.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
<?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/>.
/**
* List of wikis on course. (Not used in OU. I ripped it entirely off
* from another module, deleting module-specific bits.)
*
* @copyright © 2007 The Open University
* @author [email protected]
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package ouwiki
*/
require_once(dirname(__FILE__) . '/../../config.php');
require_once($CFG->dirroot.'/mod/ouwiki/lib.php');
// Support for OU shared activities system, if installed
$grabindex = $CFG->dirroot.'/course/format/sharedactv/grabindex.php';
if (file_exists($grabindex)) {
require_once($grabindex);
}
$id = required_param('id', PARAM_INT); // course
$url = new moodle_url('/mod/ouwiki/index.php', array('id' => $id));
$PAGE->set_url($url);
if (!$course = $DB->get_record('course', array('id' => $id))) {
throw new moodle_exception('invalidcourseid');
}
require_course_login($course->id, true);
$PAGE->set_pagelayout('incourse');
$context = context_course::instance($course->id);
// Get all required strings.
$strname = get_string('name');
$strsectionname = get_string('sectionname', 'format_' . $course->format);
$strdescription = get_string('description');
$strsectionname = get_string('sectionname', 'format_' . $course->format);
$strouwikis = get_string('modulenameplural', 'ouwiki');
// Print the header.
$PAGE->navbar->add($strouwikis, "index.php?id=$course->id");
$PAGE->set_title($strouwikis);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
if (!($ouwikis = get_all_instances_in_course('ouwiki', $course))) {
notice("There are no wikis", "../../course/view.php?id=$course->id");
die;
}
$usesections = course_format_uses_sections($course->format);
if ($usesections) {
$sections = get_fast_modinfo($course)->get_section_info_all();
}
$table = new html_table();
if ($usesections) {
$table->head = array($strsectionname, $strname, $strdescription);
} else {
$table->head = array($strname, $strdescription);
}
foreach ($ouwikis as $ouwiki) {
// Calculate the href.
$linkcss = null;
if (!$ouwiki->visible) {
$linkcss = array('class' => 'dimmed');
}
$link = html_writer::link(new moodle_url('/mod/ouwiki/view.php', array('id' => $ouwiki->coursemodule)), $ouwiki->name, $linkcss);
// Properly format the intro.
$contextmodule = context_module::instance($ouwiki->coursemodule);
$ouwiki->intro = file_rewrite_pluginfile_urls($ouwiki->intro, 'pluginfile.php', $contextmodule->id,
'mod_ouwiki', 'intro', null);
if ($usesections) {
$table->data[] = array(get_section_name($course, $sections[$ouwiki->section]), $link, $ouwiki->intro);
} else {
$table->data[] = array($link, $ouwiki->intro);
}
}
echo html_writer::table($table);
// Log usage view.
$params = array(
'context' => $context,
);
$event = \mod_ouwiki\event\course_module_instance_list_viewed::create($params);
$event->add_record_snapshot('course', $course);
$event->trigger();
// Finish the page.
echo $OUTPUT->footer();