View::parse('generic/reply/staffpm.php', array('Hidden' => true)); ?>
Community Help
First-Line Support
These users are not official staff members. They are users who have volunteered their time to help people in need. Please treat them with respect, and read this before contacting them.
Username |
Last seen |
Support for |
$Row = 'a';
foreach ($FrontLineSupport as $Support) {
list($ID, $Class, $Username, $Paranoia, $LastAccess, $SupportFor) = $Support;
$Row = make_staff_row($Row, $ID, $Paranoia, $Class, $LastAccess, $SupportFor);
} ?>
Forum Moderators
Forum Moderators are users who have been promoted to help moderate the forums. They can only help with forum-oriented questions.
Username |
Last seen |
Remark |
$Row = 'a';
foreach ($ForumStaff as $Support) {
list($ID, $Class, $Username, $Paranoia, $LastAccess, $SupportFor) = $Support;
$Row = make_staff_row($Row, $ID, $Paranoia, $Class, $LastAccess, $SupportFor);
} ?>
$CurClass = 0;
$CloseTable = false;
$DevDiv = false;
$AdminDiv = false;
foreach ($Staff as $StaffMember) {
list($ID, $Class, $ClassName, $Username, $Paranoia, $LastAccess, $Remark) = $StaffMember;
if ($Class != $CurClass) { // Start new class of staff members
$Row = 'a';
if ($CloseTable) {
$CloseTable = false;
// the "\t" and "\n" are used here to make the HTML look pretty
echo "\t\t\n\t\t
\n";
}
$CurClass = $Class;
$CloseTable = true;
$HTMLID = '';
switch ($ClassName) {
case 'Moderator':
$HTMLID = 'mods';
break;
case 'Developer':
printSectionDiv("Development");
$DevDiv = true;
$HTMLID = 'devs';
break;
case 'Lead Developer':
if (!$DevDiv) {
printSectionDiv("Development");
$DevDiv = true;
}
$HTMLID = 'lead_devs';
break;
case 'Administrator':
printSectionDiv("Administration");
$AdminDiv = true;
$HTMLID = 'admins';
break;
case 'System Administrator':
case 'Sysop':
if (!$AdminDiv) {
printSectionDiv("Administration");
}
$HTMLID = 'sysops';
break;
default:
$HTMLID = '';
}
if ($HTMLID != 'mods') {
echo "\t\t
".$ClassName."s
\n";
} else {
echo "\t\t
" . $ClassName . "s
\n";
}
?>
Username |
Last seen |
Remark |
} // End new class header
$HiddenBy = 'Hidden by staff member';
// Display staff members for this class
$Row = make_staff_row($Row, $ID, $Paranoia, $Class, $LastAccess, $Remark, $HiddenBy);
} ?>