2002-10-29 14:48:58 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
require("../config.php");
|
|
|
|
|
2003-05-03 06:50:29 +00:00
|
|
|
if (empty($CFG->langmenu)) {
|
|
|
|
$langmenu = "";
|
|
|
|
} else {
|
|
|
|
$currlang = current_language();
|
|
|
|
$langs = get_list_of_languages();
|
2003-08-29 04:46:28 +00:00
|
|
|
$langmenu = popup_form ("$CFG->wwwroot/doc/?lang=", $langs, "chooselang", $currlang, "", "", "", true, "parent");
|
2003-05-03 06:50:29 +00:00
|
|
|
}
|
2002-12-29 16:28:41 +00:00
|
|
|
|
2002-10-29 14:48:58 +00:00
|
|
|
if (! $site = get_site()) {
|
|
|
|
error("Site is misconfigured");
|
|
|
|
}
|
|
|
|
$strdocumentation = get_string("documentation");
|
2003-08-29 04:46:28 +00:00
|
|
|
print_header("$site->shortname: $strdocumentation", "$site->fullname", "$strdocumentation", "", "", true, $langmenu, navmenu($site, NULL, "parent"));
|
2002-10-29 14:48:58 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
|