Initial commit
This commit is contained in:
32
lotgd-web/lotgd/about.php
Executable file
32
lotgd-web/lotgd/about.php
Executable file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
// translator ready
|
||||
// addnews ready
|
||||
// mail ready
|
||||
define("ALLOW_ANONYMOUS",true);
|
||||
require_once("common.php");
|
||||
require_once("lib/showform.php");
|
||||
require_once("lib/http.php");
|
||||
|
||||
tlschema("about");
|
||||
|
||||
page_header("About Legend of the Green Dragon");
|
||||
$details = gametimedetails();
|
||||
|
||||
checkday();
|
||||
$op = httpget('op');
|
||||
|
||||
switch ($op) {
|
||||
case "setup": case "listmodules": case "license":
|
||||
require("lib/about/about_$op.php");
|
||||
break;
|
||||
default:
|
||||
require("lib/about/about_default.php");
|
||||
break;
|
||||
}
|
||||
if ($session['user']['loggedin']) {
|
||||
addnav("Return to the news","news.php");
|
||||
}else{
|
||||
addnav("Login Page","index.php");
|
||||
}
|
||||
page_footer();
|
||||
?>
|
Reference in New Issue
Block a user