// Preamble
$pageName = "Developer Central";
$focused = "home"; // Dock icon name to get 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"', 'Update this to notify the outside world what you\'re currently working on.');
?>
|
tableBoxFooter () ?>
if ($userInfo[u_admin] == 'Y') { ?>
tableBoxHeader (featureBgColor, featureHeadColor);
tableTitle ("Administration", 1, featureHeadColor);
?>
|
News [ Add | Edit | Delete ]
SotC [ Add | Edit | Delete ]
User [ Add | Edit | Delete ]
|
tableBoxFooter();
?>
} ?>
tableFooter(); ?>
require (siteHome ."/parts/postamble.php"); // Finish this sucker up
?>