moodle/help.php

111 lines
3.8 KiB
PHP
Raw Normal View History

<?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
2002-03-11 03:18:13 +00:00
require_once("config.php");
2002-03-11 03:18:13 +00:00
optional_variable($file, "");
optional_variable($text, "No text to display");
optional_variable($module, "moodle");
2002-07-21 08:34:25 +00:00
print_header();
if (detect_munged_arguments("$module/$file")) {
error("Filenames contain illegal characters!");
}
print_simple_box_start("center", "96%");
$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" and ($file == "index.html" or $file == "mods.html")) {
// include file for each module
2003-10-08 01:24:49 +00:00
if (!$modules = get_records("modules", "visible", 1)) {
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")) {
echo '<hr size="1" />';
include("$filepath"); // The actual helpfile
break;
}
}
}
}
if ($module == "moodle" and ($file == "resource/types.html")) { // RESOURCES
require_once("$CFG->dirroot/mod/resource/lib.php");
$typelist = resource_get_resource_types();
$typelist['label'] = get_string('resourcetypelabel', 'resource');
foreach ($typelist as $type => $name) {
foreach ($langs as $lang) {
if (empty($lang)) {
continue;
}
$filepath = "$CFG->dirroot/lang/$lang/help/resource/type/$type.html";
if (file_exists("$filepath")) {
echo '<hr size="1" />';
include("$filepath"); // The actual helpfile
break;
}
}
}
}
break;
}
2002-07-21 08:34:25 +00:00
}
} else {
echo "<p>";
echo clean_text($text);
echo "</p>";
$helpfound = true;
}
print_simple_box_end();
if (!$helpfound) {
2004-07-13 03:51:05 +00:00
$file = clean_text($file); // Keep it clean!
notify("Help file '$file' could not be found!");
2002-07-21 08:34:25 +00:00
}
close_window_button();
echo "<center><p><a href=\"help.php?file=index.html\">".get_string("helpindex")."</a><p></center>";
2002-07-02 07:09:26 +00:00
?>
</body>
</html>
2002-03-11 03:18:13 +00:00