2002-10-29 14:48:58 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
require("../config.php");
|
|
|
|
|
2003-06-12 11:55:03 +00:00
|
|
|
if (! $info = document_file("files.php", false)) {
|
|
|
|
error("404 - File Not Found");
|
|
|
|
}
|
2002-12-29 14:39:52 +00:00
|
|
|
|
|
|
|
include($info->filepath);
|
|
|
|
|
2002-10-29 14:48:58 +00:00
|
|
|
print_header();
|
2002-12-29 14:39:52 +00:00
|
|
|
|
|
|
|
foreach ($string as $file => $filename) {
|
2003-10-01 18:00:41 +00:00
|
|
|
if (substr($file,0,1) == "-") {
|
|
|
|
echo '<p style="font-size:small;margin-bottom:0px;font-family:Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;">'.
|
|
|
|
$filename.'</p>';
|
|
|
|
} else {
|
|
|
|
echo "<li style=\"font-size:small\"><a target=\"main\" href=\"$CFG->wwwroot/doc/?file=$file\">$filename</a></li>";
|
|
|
|
}
|
2002-12-29 14:39:52 +00:00
|
|
|
}
|
2002-10-29 14:48:58 +00:00
|
|
|
|
|
|
|
?>
|