mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
e30cc24c0d
AMOS BEGIN CPY [pluginname,coursereport_log],[pluginname,report_log] CPY [pluginname,coursereport_stats],[pluginname,report_stats] AMOS END
11 lines
483 B
PHP
11 lines
483 B
PHP
<?php
|
|
|
|
defined('MOODLE_INTERNAL') || die;
|
|
|
|
// just a link to course report
|
|
$ADMIN->add('reports', new admin_externalpage('reportlog', get_string('log', 'admin'), "$CFG->wwwroot/course/report/log/index.php?id=".SITEID, 'coursereport/log:view'));
|
|
$ADMIN->add('reports', new admin_externalpage('reportloglive', get_string('loglive', 'coursereport_log'), "$CFG->wwwroot/course/report/log/indexlive.php?id=".SITEID, 'coursereport/log:viewlive'));
|
|
|
|
// no report settings
|
|
$settings = null;
|