mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
20 lines
441 B
PHP
Executable File
20 lines
441 B
PHP
Executable File
<?PHP // $Id$
|
|
|
|
require("../config.php");
|
|
|
|
if (! $info = document_file("files.php", false)) {
|
|
error("404 - File Not Found");
|
|
}
|
|
|
|
include($info->filepath);
|
|
|
|
print_header();
|
|
|
|
echo "<font size=2 face=\"san-serif\">";
|
|
foreach ($string as $file => $filename) {
|
|
echo "<li><a target=\"main\" href=\"$CFG->wwwroot/doc/?file=$file\">$filename</a></li>";
|
|
}
|
|
echo "</font>";
|
|
|
|
?>
|