First pass at a simple help system
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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 help() in lib/moodlelib.php
|
||||
|
||||
include("config.php");
|
||||
|
||||
if (ereg("\\.\\.", $file)) {
|
||||
error("Error: Filenames can not contain \"..\"");
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<LINK rel="stylesheet" href="<?=$CFG->wwwroot?>/theme/<?=$CFG->theme?>/styles.css">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="<?=$THEME->body ?>">
|
||||
<? include("lang/$CFG->lang/$file"); ?>
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
Reference in New Issue
Block a user