2 /// help.php - prints a very simple page and includes a
3 /// page content or a string from elsewhere
4 /// Usually this will appear in a popup
5 /// See helpbutton() in lib/moodlelib.php
7 require_once("config.php");
9 optional_variable($file, "");
10 optional_variable($text, "No text to display");
11 optional_variable($module, "moodle");
15 if (detect_munged_arguments("$module/$file")) {
16 error("Filenames contain illegal characters!");
19 print_simple_box_start("center", "96%");
22 $langs = array(current_language(), get_string("parentlanguage"), "en"); // Fallback
25 foreach ($langs as $lang) {
29 if ($module == "moodle") {
30 $filepath = "$CFG->dirroot/lang/$lang/help/$file";
32 $filepath = "$CFG->dirroot/lang/$lang/help/$module/$file";
35 if (file_exists("$filepath")) {
37 include("$filepath"); // The actual helpfile
39 if ($module == "moodle" && ($file == "index.html" ||
$file == "mods.html")) {
40 // include file for each module
42 if (!$modules = get_records("modules", "visible", 1)) {
43 error("No modules found!!"); // Should never happen
46 foreach ($modules as $mod) {
47 $strmodulename = get_string("modulename", "$mod->name");
48 $modulebyname[$strmodulename] = $mod;
52 foreach ($modulebyname as $mod) {
53 foreach ($langs as $lang) {
57 $filepath = "$CFG->dirroot/lang/$lang/help/$mod->name/$file";
59 if (file_exists("$filepath")) {
60 include("$filepath"); // The actual helpfile
76 print_simple_box_end();
79 notify("Help file '$file' could not be found!");
82 close_window_button();
84 echo "<center><p><a href=\"help.php?file=index.html\">".get_string("helpindex")."</a><p></center>";