// Preamble
$pageName = "Developer Central";
$focused = "home"; // Dock icon name to gets a border
$need = 'auth';
require("../parts/preamble.php"); // Load most of document
?>
function infoItem($url, $desc, $longdesc)
{
echo '
' .
' - ' . $desc . '
' .
' - ' . $longdesc . '
' .
'
';
}
?>
Welcome to Developer Central!
This is the area for developers to post news, edit your user information,
and so on. Members with Admin-level access can modify news items and post
State of the Code items here as well.
tableHeader("100%", "black");
?>
tableBoxHeader("100%", "black", tableHeadColor);
tableTitle("QuakeForge Developer Resources", 1, "black");
?>
|
infoItem('addnews.php', 'Post News', 'Post new news items from here.');
infoItem('userinfo.php', 'User Info', 'Display or change your user information; Please use this when your email address, phone number, or snailmail address changes.');
infoItem('plan.php', 'Edit "plan"', 'Not used by the web site at the moment, this will provide something for users to see what the hell we\'re working on.');
?>
|
tableBoxFooter() ?>
if ($userInfo[u_admin] == 'Y') { ?>
tableBoxHeader(featureBgColor, tableHeadColor);
tableTitle("Administration", 1, tableHeadColor);
?>
|
News [ Add | Edit | Delete ]
SotC [ Add | Edit | Delete ]
User [ Add | Edit | Delete ]
|
tableBoxFooter();
?>
} ?>
tableFooter(); ?>
require (siteHome ."/parts/postamble.php"); // Finish this sucker up
?>