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.
35 lines
975 B
PHP
35 lines
975 B
PHP
<?PHP // $Id$
|
|
|
|
require("../config.php");
|
|
|
|
optional_variable($id); // course context
|
|
require_variable($file); // file in this directory to view
|
|
|
|
$file = clean_filename($file);
|
|
|
|
if ($id) {
|
|
if (! $course = get_record("course", "id", $id)) {
|
|
error("Course is misconfigured");
|
|
}
|
|
$strhelp = get_string("help");
|
|
print_header("$course->shortname: $strhelp", "$course->fullname",
|
|
"<A HREF=\"../course/view.php?id=$course->id\">$course->shortname</A> -> $strhelp");
|
|
} else {
|
|
if (! $site = get_site()) {
|
|
error("Site is misconfigured");
|
|
}
|
|
$strdocumentation = get_string("documentation");
|
|
print_header("$site->shortname: $strhelp", "$site->fullname",
|
|
"<A HREF=\"view.php?file=contents.html\">$strdocumentation</A>");
|
|
|
|
}
|
|
|
|
echo "<BLOCKQUOTE>";
|
|
|
|
document_file($file, true);
|
|
|
|
echo "</BLOCKQUOTE>";
|
|
|
|
?>
|
|
|