mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
14 lines
401 B
PHP
14 lines
401 B
PHP
<?php // $Id$
|
|
|
|
if (!defined('MOODLE_INTERNAL')) {
|
|
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
|
}
|
|
|
|
echo '<p>';
|
|
$participationreport = get_string('participationreport');
|
|
echo "<a href=\"{$CFG->wwwroot}/course/report/participation/index.php?id={$course->id}\">";
|
|
echo "$participationreport</a>\n";
|
|
echo '</p>';
|
|
|
|
?>
|