Contact Staff
If you are looking for help with a general question, we appreciate it if you would only message through the staff inbox, where we can all help you.
You can do that by sending a message to the Staff Inbox.
View::parse('generic/reply/staffpm.php', array('Hidden' => true)); ?>
if ($FrontLineSupport) { ?>
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 |
foreach ($ForumStaff as $Support) {
list($ID, $Class, $Username, $Paranoia, $LastAccess, $SupportFor) = $Support;
make_staff_row($ID, $Paranoia, $Class, $LastAccess, $SupportFor);
} ?>
}
$CurClass = 0;
$CloseTable = false;
foreach ($Staff as $StaffMember) {
list($ID, $Class, $ClassName, $Username, $Paranoia, $LastAccess, $Remark) = $StaffMember;
if ($Class != $CurClass) { // Start new class of staff members
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;
$DevDiv = false;
$AdminDiv = false;
$HTMLID = '';
switch ($ClassName) {
case 'Moderator':
printSectionDiv("Moderators");
$HTMLID = 'mods';
break;
case 'Developer':
$HTMLID = 'devs';
break;
case 'Lead Developer':
$HTMLID = 'lead_devs';
break;
case 'System Administrator':
$HTMLID = 'sys_admins';
break;
case 'Administrator':
$HTMLID = 'admins';
break;
case 'Sysop':
$HTMLID = 'sysops';
break;
default:
$HTMLID = '';
}
switch ($ClassName) {
case 'Developer':
case 'Lead Developer':
if (!$DevDiv) {
printSectionDiv("Development");
$DevDiv = true;
}
break;
case 'System Administrator':
case 'Administrator':
case 'Sysop':
if (!$AdminDiv) {
printSectionDiv("Administration");
$AdminDiv = true;
}
}
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
make_staff_row($ID, $Paranoia, $Class, $LastAccess, $Remark, $HiddenBy);
} ?>