mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
1517c0aa4d
and mods.html files. Direct from Mad Alex
85 lines
2.7 KiB
PHP
85 lines
2.7 KiB
PHP
<?PHP /// $Id$
|
|
/// help.php - prints a very simple page and includes a
|
|
/// page content or a string from elsewhere
|
|
/// Usually this will appear in a popup
|
|
/// See helpbutton() in lib/moodlelib.php
|
|
|
|
require_once("config.php");
|
|
|
|
optional_variable($file, "");
|
|
optional_variable($text, "No text to display");
|
|
optional_variable($module, "moodle");
|
|
|
|
print_header();
|
|
|
|
if (detect_munged_arguments("$module/$file")) {
|
|
error("Filenames contain illegal characters!");
|
|
}
|
|
|
|
$helpfound = false;
|
|
$langs = array(current_language(), get_string("parentlanguage"), "en"); // Fallback
|
|
|
|
if (!empty($file)) {
|
|
foreach ($langs as $lang) {
|
|
if (empty($lang)) {
|
|
continue;
|
|
}
|
|
if ($module == "moodle") {
|
|
$filepath = "$CFG->dirroot/lang/$lang/help/$file";
|
|
} else {
|
|
$filepath = "$CFG->dirroot/lang/$lang/help/$module/$file";
|
|
}
|
|
|
|
if (file_exists("$filepath")) {
|
|
$helpfound = true;
|
|
include("$filepath"); // The actual helpfile
|
|
|
|
if ($module == "moodle" && ($file == "index.html" || $file == "mods.html")) {
|
|
// include file for each module
|
|
|
|
if (!$modules = get_records("modules")) {
|
|
error("No modules found!!"); // Should never happen
|
|
}
|
|
|
|
foreach ($modules as $mod) {
|
|
$strmodulename = get_string("modulename", "$mod->name");
|
|
$modulebyname[$strmodulename] = $mod;
|
|
}
|
|
ksort($modulebyname);
|
|
|
|
foreach ($modulebyname as $mod) {
|
|
foreach ($langs as $lang) {
|
|
if (empty($lang)) {
|
|
continue;
|
|
}
|
|
$filepath = "$CFG->dirroot/lang/$lang/help/$mod->name/$file";
|
|
|
|
if (file_exists("$filepath")) {
|
|
include("$filepath"); // The actual helpfile
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
echo "<p>";
|
|
echo $text;
|
|
echo "</p>";
|
|
$helpfound = true;
|
|
}
|
|
|
|
if (!$helpfound) {
|
|
notify("Help file '$file' could not be found!");
|
|
}
|
|
|
|
close_window_button();
|
|
|
|
echo "<center><p><a href=\"help.php?file=index.html\">".get_string("helpindex")."</a><p></center>";
|
|
?>
|
|
</body>
|
|
</html>
|
|
|