moodle/doc/view.php
moodler f1dacb2ed0 Changes to how documentation works. A thin PHP interface now fetches
files from the language packs.  If a file isn't available in the current
language, then English is used.
2002-12-29 14:39:52 +00:00

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>";
?>