Basic placeholder webui

Adds the bare minimum files to have a functional web interface with
placeholder sidebar, home and admin pages.
This commit is contained in:
2011-12-16 02:17:32 +00:00
parent 5e04f99429
commit 35119be9a0
15 changed files with 340 additions and 0 deletions

21
public/index.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
define('StatusBoard_File', 'index');
require '_inc.php';
try {
$main = StatusBoard_Main::instance();
StatusBoard_LogEntry::setLocalProgname('webui');
$smarty = $main->smarty();
$page = new StatusBoard_Page($smarty, $main->request());
if ($page->evaluate()) {
$smarty->display('index.tpl');
}
} catch (StatusBoard_Exception $e) {
die("Uncaught Exception: " . $e->getMessage());
}
?>