" . Users::format_username($ID, false, false, false) . " "; //used for proper indentation of HTML if (check_paranoia('lastseen', $Paranoia, $Class)) { echo time_diff($LastAccess); } else { echo "$HiddenBy"; } echo "\n\t\t\t\t " . Text::full_format($Remark) . " \n"; // the "\n" is needed for pretty HTML // the foreach loop that calls this function needs to know the new value of $Row return $Row; } function get_fls() { global $Cache, $DB; static $FLS; if (is_array($FLS)) { return $FLS; } if (($FLS = $Cache->get_value('fls')) === false) { $DB->query(' SELECT m.ID, p.Level, m.Username, m.Paranoia, m.LastAccess, i.SupportFor FROM users_info AS i JOIN users_main AS m ON m.ID = i.UserID JOIN permissions AS p ON p.ID = m.PermissionID JOIN users_levels AS l ON l.UserID = i.UserID WHERE l.PermissionID = ' . FLS_TEAM . ' ORDER BY m.Username'); $FLS = $DB->to_array(false, MYSQLI_BOTH, array(3, 'Paranoia')); $Cache->cache_value('fls', $FLS, 180); } return $FLS; } /* * Build the SQL query that will be used for displaying staff members * * @param $StaffLevel a string for selecting the type of staff being queried * @return string the text of the generated SQL query */ function generate_staff_query($StaffLevel) { global $Classes; if ($StaffLevel == 'forum_staff') { $PName = ''; // only needed for full staff $PLevel = 'p.Level < ' . $Classes[MOD]['Level']; } elseif ($StaffLevel == 'staff') { $PName = 'p.Name,'; $PLevel = 'p.Level >= ' . $Classes[MOD]['Level']; } $SQL = " SELECT m.ID, p.Level, $PName m.Username, m.Paranoia, m.LastAccess, i.SupportFor FROM users_main AS m JOIN users_info AS i ON m.ID = i.UserID JOIN permissions AS p ON p.ID = m.PermissionID WHERE p.DisplayStaff = '1' AND $PLevel ORDER BY p.Level"; if (check_perms('users_mod')) { $SQL .= ', m.LastAccess ASC'; } else { $SQL .= ', m.Username'; } return $SQL; } function get_forum_staff() { global $Cache, $DB; static $ForumStaff; if (is_array($ForumStaff)) { return $ForumStaff; } // sort the lists differently if the viewer is a staff member if (!check_perms('users_mod')) { if (($ForumStaff = $Cache->get_value('forum_staff')) === false) { $DB->query(generate_staff_query('forum_staff')); $ForumStaff = $DB->to_array(false, MYSQLI_BOTH, array(3, 'Paranoia')); $Cache->cache_value('forum_staff', $ForumStaff, 180); } } else { if (($ForumStaff = $Cache->get_value('forum_staff_mod_view')) === false) { $DB->query(generate_staff_query('forum_staff')); $ForumStaff = $DB->to_array(false, MYSQLI_BOTH, array(3, 'Paranoia')); $Cache->cache_value('forum_staff_mod_view', $ForumStaff, 180); } } return $ForumStaff; } function get_staff() { global $Cache, $DB; static $Staff; if (is_array($Staff)) { return $Staff; } // sort the lists differently if the viewer is a staff member if (!check_perms('users_mod')) { if (($Staff = $Cache->get_value('staff')) === false) { $DB->query(generate_staff_query('staff')); $Staff = $DB->to_array(false, MYSQLI_BOTH, array(4, 'Paranoia')); $Cache->cache_value('staff', $Staff, 180); } } else { if (($Staff = $Cache->get_value('staff_mod_view')) === false) { $DB->query(generate_staff_query('staff')); $Staff = $DB->to_array(false, MYSQLI_BOTH, array(4, 'Paranoia')); $Cache->cache_value('staff_mod_view', $Staff, 180); } } return $Staff; } function get_support() { return array( get_fls(), get_forum_staff(), get_staff(), 'fls' => get_fls(), 'forum_staff' => get_forum_staff(), 'staff' => get_staff() ); }