mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
f1dacb2ed0
files from the language packs. If a file isn't available in the current language, then English is used.
18 lines
386 B
PHP
Executable File
18 lines
386 B
PHP
Executable File
<?PHP // $Id$
|
|
|
|
require("../config.php");
|
|
|
|
$info = document_file("files.php", false);
|
|
|
|
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>";
|
|
|
|
?>
|