mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
11 lines
358 B
PHP
11 lines
358 B
PHP
<?php
|
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
}
|
|
|
|
$activityreport = get_string( 'activityreport' );
|
|
echo "<center><a href=\"{$CFG->wwwroot}/course/report/outline/index.php?id={$course->id}\">";
|
|
echo "$activityreport</a></center>\n";
|
|
|
|
?>
|