forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.php
41 lines (31 loc) · 1.34 KB
/
report.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
<?php
// Display all the interfaces for importing data into a specific course
require_once('../config.php');
$id = required_param('id', PARAM_INT); // course id to import TO
$course = $DB->get_record('course', array('id'=>$id), '*', MUST_EXIST);
$PAGE->set_pagelayout('standard');
require_login($course);
$context = context_course::instance($course->id);
require_capability('moodle/site:viewreports', $context); // basic capability for listing of reports
$strreports = get_string('reports');
$PAGE->set_url(new moodle_url('/course/report.php', array('id'=>$id)));
$PAGE->set_title($course->fullname.': '.$strreports);
$PAGE->set_heading($course->fullname.': '.$strreports);
echo $OUTPUT->header();
$reports = core_component::get_plugin_list('coursereport');
foreach ($reports as $report => $reportdirectory) {
$pluginfile = $reportdirectory.'/mod.php';
if (file_exists($pluginfile)) {
ob_start();
include($pluginfile); // Fragment for listing
$html = ob_get_contents();
ob_end_clean();
// add div only if plugin accessible
if ($html !== '') {
echo '<div class="plugin">';
echo $html;
echo '</div>';
}
}
}
echo $OUTPUT->footer();