Moderator tools
';
$dashboard_notifications .= '
Things like notices or messages may be here later.
';
$dashboard_notifications .= '
';
//$dashboard_notifications = ''; //clear it out for now?
//DASHBOARD
if ((!isset($_GET["page"])) || ($_GET["page"] == '')) {
include $path . '/templates/mod/dashboard.php';
}
//ACCOUNT PAGE
if ($_GET["page"] == 'account') {
include $path . '/templates/mod/account.php';
}
//USERS PAGE
if ($_GET["page"] == 'users') {
include $path . '/templates/mod/users.php';
}
//REPORTS PAGE
if ($_GET["page"] == 'reports') {
include $path . '/templates/mod/reports.php';
}
//GLOBAL REPORTS PAGE
if ($_GET["page"] == 'global_reports') {
include $path . '/templates/mod/global_reports.php';
}
//BANS PAGE
if ($_GET["page"] == 'bans') {
include $path . '/templates/mod/bans.php';
}
//If literally none of the above activates.
$title = 'Error! - ' . $site_name;
if (isset($_GET['theme'])) {
$output_html .= '';
} else {
$output_html .= '';
}
$output_html .= '';
include $path . '/templates/header.php';
$output_html .= '';
$output_html .= '';
//include $path . '/templates/boardlist.php';
$output_html .= 'Gomen nasai... Woah — Unknown Error!
Please leave a detailed bug report... Page may not exist, if this was unintended please let me know.
';
//include $path . '/templates/footer.php';
$output_html .= '';
$output_html .= '';
echo $output_html;
exit();
?>