forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.php
55 lines (44 loc) · 1.42 KB
/
help.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?PHP
/// 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
include("config.php");
optional_variable($file, "");
optional_variable($text, "No text to display");
optional_variable($module, "moodle");
$lang = current_language();
print_header();
if (ereg("\\.\\.", $file)) {
error("Filenames can not contain \"..\"");
}
if ($file) {
if ($module == "moodle") {
$filepath = "$CFG->dirroot/lang/$lang/help/$file";
} else {
$filepath = "$CFG->dirroot/lang/$lang/help/$module/$file";
}
if (file_exists("$filepath")) {
include("$filepath"); // Chosen language
} else { // Fall back to English
if ($module == "moodle") {
$filepath = "$CFG->dirroot/lang/en/help/$file";
} else {
$filepath = "$CFG->dirroot/lang/en/help/$module/$file";
}
if (file_exists("$filepath")) {
include("$filepath");
} else {
notify("Can not find the specified help file");
die;
}
}
} else {
echo "<P>";
echo $text;
echo "</P>";
}
close_window_button();
?>
</BODY>
</HTML>