|
|
f2e824 |
|
|
|
f2e824 |
/**
|
|
|
f2e824 |
*
|
|
|
f2e824 |
* @package phpBB3
|
|
|
f2e824 |
* @version $Id: viewonline.php 8705 2008-07-28 16:55:00Z Kellanved $
|
|
|
f2e824 |
* @copyright (c) 2005 phpBB Group
|
|
|
f2e824 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
f2e824 |
*
|
|
|
f2e824 |
*/
|
|
|
f2e824 |
|
|
|
f2e824 |
/**
|
|
|
f2e824 |
* @ignore
|
|
|
f2e824 |
*/
|
|
|
f2e824 |
define('IN_PHPBB', true);
|
|
|
f2e824 |
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
|
|
|
f2e824 |
$phpEx = substr(strrchr(__FILE__, '.'), 1);
|
|
|
f2e824 |
include($phpbb_root_path . 'common.' . $phpEx);
|
|
|
f2e824 |
|
|
|
f2e824 |
// Start session management
|
|
|
f2e824 |
$user->session_begin();
|
|
|
f2e824 |
$auth->acl($user->data);
|
|
|
f2e824 |
$user->setup('memberlist');
|
|
|
f2e824 |
|
|
|
f2e824 |
// Get and set some variables
|
|
|
f2e824 |
$mode = request_var('mode', '');
|
|
|
f2e824 |
$session_id = request_var('s', '');
|
|
|
f2e824 |
$start = request_var('start', 0);
|
|
|
f2e824 |
$sort_key = request_var('sk', 'b');
|
|
|
f2e824 |
$sort_dir = request_var('sd', 'd');
|
|
|
f2e824 |
$show_guests= ($config['load_online_guests']) ? request_var('sg', 0) : 0;
|
|
|
f2e824 |
|
|
|
f2e824 |
// Can this user view profiles/memberlist?
|
|
|
f2e824 |
if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
if ($user->data['user_id'] != ANONYMOUS)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
trigger_error('NO_VIEW_USERS');
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
login_box('', $user->lang['LOGIN_EXPLAIN_VIEWONLINE']);
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_JOINED'], 'c' => $user->lang['SORT_LOCATION']);
|
|
|
f2e824 |
$sort_key_sql = array('a' => 'u.username_clean', 'b' => 's.session_time', 'c' => 's.session_page');
|
|
|
f2e824 |
|
|
|
f2e824 |
// Sorting and order
|
|
|
f2e824 |
if (!isset($sort_key_text[$sort_key]))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$sort_key = 'b';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
|
|
|
f2e824 |
|
|
|
f2e824 |
// Whois requested
|
|
|
f2e824 |
if ($mode == 'whois' && $auth->acl_get('a_') && $session_id)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
|
|
|
f2e824 |
|
|
|
f2e824 |
$sql = 'SELECT u.user_id, u.username, u.user_type, s.session_ip
|
|
|
f2e824 |
FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . " s
|
|
|
f2e824 |
WHERE s.session_id = '" . $db->sql_escape($session_id) . "'
|
|
|
f2e824 |
AND u.user_id = s.session_user_id";
|
|
|
f2e824 |
$result = $db->sql_query($sql);
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($row = $db->sql_fetchrow($result))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$template->assign_var('WHOIS', user_ipwhois($row['session_ip']));
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$db->sql_freeresult($result);
|
|
|
f2e824 |
|
|
|
f2e824 |
// Output the page
|
|
|
f2e824 |
page_header($user->lang['WHO_IS_ONLINE']);
|
|
|
f2e824 |
|
|
|
f2e824 |
$template->set_filenames(array(
|
|
|
f2e824 |
'body' => 'viewonline_whois.html')
|
|
|
f2e824 |
);
|
|
|
f2e824 |
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
|
|
|
f2e824 |
|
|
|
f2e824 |
page_footer();
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
// Forum info
|
|
|
f2e824 |
$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
|
|
|
f2e824 |
FROM ' . FORUMS_TABLE . '
|
|
|
f2e824 |
ORDER BY left_id ASC';
|
|
|
f2e824 |
$result = $db->sql_query($sql, 600);
|
|
|
f2e824 |
|
|
|
f2e824 |
$forum_data = array();
|
|
|
f2e824 |
while ($row = $db->sql_fetchrow($result))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$forum_data[$row['forum_id']] = $row;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$db->sql_freeresult($result);
|
|
|
f2e824 |
|
|
|
f2e824 |
$guest_counter = 0;
|
|
|
f2e824 |
|
|
|
f2e824 |
// Get number of online guests (if we do not display them)
|
|
|
f2e824 |
if (!$show_guests)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
switch ($db->sql_layer)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
case 'sqlite':
|
|
|
f2e824 |
$sql = 'SELECT COUNT(session_ip) as num_guests
|
|
|
f2e824 |
FROM (
|
|
|
f2e824 |
SELECT DISTINCT session_ip
|
|
|
f2e824 |
FROM ' . SESSIONS_TABLE . '
|
|
|
f2e824 |
WHERE session_user_id = ' . ANONYMOUS . '
|
|
|
f2e824 |
AND session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
|
|
|
f2e824 |
')';
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
default:
|
|
|
f2e824 |
$sql = 'SELECT COUNT(DISTINCT session_ip) as num_guests
|
|
|
f2e824 |
FROM ' . SESSIONS_TABLE . '
|
|
|
f2e824 |
WHERE session_user_id = ' . ANONYMOUS . '
|
|
|
f2e824 |
AND session_time >= ' . (time() - ($config['load_online_time'] * 60));
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$result = $db->sql_query($sql);
|
|
|
f2e824 |
$guest_counter = (int) $db->sql_fetchfield('num_guests');
|
|
|
f2e824 |
$db->sql_freeresult($result);
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
// Get user list
|
|
|
f2e824 |
$sql = 'SELECT u.user_id, u.username, u.username_clean, u.user_type, u.user_colour, s.session_id, s.session_time, s.session_page, s.session_ip, s.session_browser, s.session_viewonline, s.session_forum_id
|
|
|
f2e824 |
FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . ' s
|
|
|
f2e824 |
WHERE u.user_id = s.session_user_id
|
|
|
f2e824 |
AND s.session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
|
|
|
f2e824 |
((!$show_guests) ? ' AND s.session_user_id <> ' . ANONYMOUS : '') . '
|
|
|
f2e824 |
ORDER BY ' . $order_by;
|
|
|
f2e824 |
$result = $db->sql_query($sql);
|
|
|
f2e824 |
|
|
|
f2e824 |
$prev_id = $prev_ip = $user_list = array();
|
|
|
f2e824 |
$logged_visible_online = $logged_hidden_online = $counter = 0;
|
|
|
f2e824 |
|
|
|
f2e824 |
while ($row = $db->sql_fetchrow($result))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$view_online = $s_user_hidden = false;
|
|
|
f2e824 |
$user_colour = ($row['user_colour']) ? ' style="color:#' . $row['user_colour'] . '" class="username-coloured"' : '';
|
|
|
f2e824 |
|
|
|
f2e824 |
$username_full = ($row['user_type'] != USER_IGNORE) ? get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']) : '<span' . $user_colour . '>' . $row['username'] . '';
|
|
|
f2e824 |
|
|
|
f2e824 |
if (!$row['session_viewonline'])
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$view_online = ($auth->acl_get('u_viewonline')) ? true : false;
|
|
|
f2e824 |
$logged_hidden_online++;
|
|
|
f2e824 |
|
|
|
f2e824 |
$username_full = '' . $username_full . '';
|
|
|
f2e824 |
$s_user_hidden = true;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$view_online = true;
|
|
|
f2e824 |
$logged_visible_online++;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$prev_id[$row['user_id']] = 1;
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($view_online)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$counter++;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
if (!$view_online || $counter > $start + $config['topics_per_page'] || $counter <= $start)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
continue;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else if ($show_guests && $row['user_id'] == ANONYMOUS && !isset($prev_ip[$row['session_ip']]))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$prev_ip[$row['session_ip']] = 1;
|
|
|
f2e824 |
$guest_counter++;
|
|
|
f2e824 |
$counter++;
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($counter > $start + $config['topics_per_page'] || $counter <= $start)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
continue;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$s_user_hidden = false;
|
|
|
f2e824 |
$username_full = get_username_string('full', $row['user_id'], $user->lang['GUEST']);
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else
|
|
|
f2e824 |
{
|
|
|
f2e824 |
continue;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
|
|
|
f2e824 |
if (!sizeof($on_page))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$on_page[1] = '';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
switch ($on_page[1])
|
|
|
f2e824 |
{
|
|
|
f2e824 |
case 'index':
|
|
|
f2e824 |
$location = $user->lang['INDEX'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'adm/index':
|
|
|
f2e824 |
$location = $user->lang['ACP'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'posting':
|
|
|
f2e824 |
case 'viewforum':
|
|
|
f2e824 |
case 'viewtopic':
|
|
|
f2e824 |
$forum_id = $row['session_forum_id'];
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($forum_id && $auth->acl_get('f_list', $forum_id))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$location = '';
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id);
|
|
|
f2e824 |
|
|
|
f2e824 |
if ($forum_data[$forum_id]['forum_type'] == FORUM_LINK)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$location = sprintf($user->lang['READING_LINK'], $forum_data[$forum_id]['forum_name']);
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
switch ($on_page[1])
|
|
|
f2e824 |
{
|
|
|
f2e824 |
case 'posting':
|
|
|
f2e824 |
preg_match('#mode=([a-z]+)#', $row['session_page'], $on_page);
|
|
|
f2e824 |
$posting_mode = (!empty($on_page[1])) ? $on_page[1] : '';
|
|
|
f2e824 |
|
|
|
f2e824 |
switch ($posting_mode)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
case 'reply':
|
|
|
f2e824 |
case 'quote':
|
|
|
f2e824 |
$location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
default:
|
|
|
f2e824 |
$location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'viewtopic':
|
|
|
f2e824 |
$location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]['forum_name']);
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'viewforum':
|
|
|
f2e824 |
$location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]['forum_name']);
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$location = $user->lang['INDEX'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
}
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'search':
|
|
|
f2e824 |
$location = $user->lang['SEARCHING_FORUMS'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}search.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'faq':
|
|
|
f2e824 |
$location = $user->lang['VIEWING_FAQ'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}faq.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'viewonline':
|
|
|
f2e824 |
$location = $user->lang['VIEWING_ONLINE'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}viewonline.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'memberlist':
|
|
|
f2e824 |
$location = (strpos($row['session_page'], 'mode=viewprofile') !== false) ? $user->lang['VIEWING_MEMBER_PROFILE'] : $user->lang['VIEWING_MEMBERS'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'mcp':
|
|
|
f2e824 |
$location = $user->lang['VIEWING_MCP'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'ucp':
|
|
|
f2e824 |
$location = $user->lang['VIEWING_UCP'];
|
|
|
f2e824 |
|
|
|
f2e824 |
// Grab some common modules
|
|
|
f2e824 |
$url_params = array(
|
|
|
f2e824 |
'mode=register' => 'VIEWING_REGISTER',
|
|
|
f2e824 |
'i=pm&mode=compose' => 'POSTING_PRIVATE_MESSAGE',
|
|
|
f2e824 |
'i=pm&' => 'VIEWING_PRIVATE_MESSAGES',
|
|
|
f2e824 |
'i=profile&' => 'CHANGING_PROFILE',
|
|
|
f2e824 |
'i=prefs&' => 'CHANGING_PREFERENCES',
|
|
|
f2e824 |
);
|
|
|
f2e824 |
|
|
|
f2e824 |
foreach ($url_params as $param => $lang)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
if (strpos($row['session_page'], $param) !== false)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$location = $user->lang[$lang];
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'download/file':
|
|
|
f2e824 |
$location = $user->lang['DOWNLOADING_FILE'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 'report':
|
|
|
f2e824 |
$location = $user->lang['REPORTING_POST'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
default:
|
|
|
f2e824 |
$location = $user->lang['INDEX'];
|
|
|
f2e824 |
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
|
|
|
f2e824 |
$template->assign_block_vars('user_row', array(
|
|
|
f2e824 |
'USERNAME' => $row['username'],
|
|
|
f2e824 |
'USERNAME_COLOUR' => $row['user_colour'],
|
|
|
f2e824 |
'USERNAME_FULL' => $username_full,
|
|
|
f2e824 |
'LASTUPDATE' => $user->format_date($row['session_time']),
|
|
|
f2e824 |
'FORUM_LOCATION' => $location,
|
|
|
f2e824 |
'USER_IP' => ($auth->acl_get('a_')) ? (($mode == 'lookup' && $session_id == $row['session_id']) ? gethostbyaddr($row['session_ip']) : $row['session_ip']) : '',
|
|
|
f2e824 |
'USER_BROWSER' => ($auth->acl_get('a_user')) ? $row['session_browser'] : '',
|
|
|
f2e824 |
|
|
|
f2e824 |
'U_USER_PROFILE' => ($row['user_type'] != USER_IGNORE) ? get_username_string('profile', $row['user_id'], '') : '',
|
|
|
f2e824 |
'U_USER_IP' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=lookup' . (($mode != 'lookup' || $row['session_id'] != $session_id) ? '&s=' . $row['session_id'] : '') . "&sg=$show_guests&start=$start&sk=$sort_key&sd=$sort_dir"),
|
|
|
f2e824 |
'U_WHOIS' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=whois&s=' . $row['session_id']),
|
|
|
f2e824 |
'U_FORUM_LOCATION' => $location_url,
|
|
|
f2e824 |
|
|
|
f2e824 |
'S_USER_HIDDEN' => $s_user_hidden,
|
|
|
f2e824 |
'S_GUEST' => ($row['user_id'] == ANONYMOUS) ? true : false,
|
|
|
f2e824 |
'S_USER_TYPE' => $row['user_type'],
|
|
|
f2e824 |
));
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$db->sql_freeresult($result);
|
|
|
f2e824 |
unset($prev_id, $prev_ip);
|
|
|
f2e824 |
|
|
|
f2e824 |
// Generate reg/hidden/guest online text
|
|
|
f2e824 |
$vars_online = array(
|
|
|
f2e824 |
'REG' => array('logged_visible_online', 'l_r_user_s'),
|
|
|
f2e824 |
'HIDDEN'=> array('logged_hidden_online', 'l_h_user_s'),
|
|
|
f2e824 |
'GUEST' => array('guest_counter', 'l_g_user_s')
|
|
|
f2e824 |
);
|
|
|
f2e824 |
|
|
|
f2e824 |
foreach ($vars_online as $l_prefix => $var_ary)
|
|
|
f2e824 |
{
|
|
|
f2e824 |
switch ($$var_ary[0])
|
|
|
f2e824 |
{
|
|
|
f2e824 |
case 0:
|
|
|
f2e824 |
$$var_ary[1] = $user->lang[$l_prefix . '_USERS_ZERO_ONLINE'];
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
case 1:
|
|
|
f2e824 |
$$var_ary[1] = $user->lang[$l_prefix . '_USER_ONLINE'];
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
|
|
|
f2e824 |
default:
|
|
|
f2e824 |
$$var_ary[1] = $user->lang[$l_prefix . '_USERS_ONLINE'];
|
|
|
f2e824 |
break;
|
|
|
f2e824 |
}
|
|
|
f2e824 |
}
|
|
|
f2e824 |
unset($vars_online);
|
|
|
f2e824 |
|
|
|
f2e824 |
$pagination = generate_pagination(append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir"), $counter, $config['topics_per_page'], $start);
|
|
|
f2e824 |
|
|
|
f2e824 |
// Grab group details for legend display
|
|
|
f2e824 |
if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$sql = 'SELECT group_id, group_name, group_colour, group_type
|
|
|
f2e824 |
FROM ' . GROUPS_TABLE . '
|
|
|
f2e824 |
WHERE group_legend = 1
|
|
|
f2e824 |
ORDER BY group_name ASC';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
|
|
|
f2e824 |
FROM ' . GROUPS_TABLE . ' g
|
|
|
f2e824 |
LEFT JOIN ' . USER_GROUP_TABLE . ' ug
|
|
|
f2e824 |
ON (
|
|
|
f2e824 |
g.group_id = ug.group_id
|
|
|
f2e824 |
AND ug.user_id = ' . $user->data['user_id'] . '
|
|
|
f2e824 |
AND ug.user_pending = 0
|
|
|
f2e824 |
)
|
|
|
f2e824 |
WHERE g.group_legend = 1
|
|
|
f2e824 |
AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
|
|
|
f2e824 |
ORDER BY g.group_name ASC';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$result = $db->sql_query($sql);
|
|
|
f2e824 |
|
|
|
f2e824 |
$legend = '';
|
|
|
f2e824 |
while ($row = $db->sql_fetchrow($result))
|
|
|
f2e824 |
{
|
|
|
f2e824 |
if ($row['group_name'] == 'BOTS')
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$legend .= (($legend != '') ? ', ' : '') . '' . $user->lang['G_BOTS'] . '';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
else
|
|
|
f2e824 |
{
|
|
|
f2e824 |
$legend .= (($legend != '') ? ', ' : '') . '' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '';
|
|
|
f2e824 |
}
|
|
|
f2e824 |
}
|
|
|
f2e824 |
$db->sql_freeresult($result);
|
|
|
f2e824 |
|
|
|
f2e824 |
// Refreshing the page every 60 seconds...
|
|
|
f2e824 |
meta_refresh(60, append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir&start=$start"));
|
|
|
f2e824 |
|
|
|
f2e824 |
// Send data to template
|
|
|
f2e824 |
$template->assign_vars(array(
|
|
|
f2e824 |
'TOTAL_REGISTERED_USERS_ONLINE' => sprintf($l_r_user_s, $logged_visible_online) . sprintf($l_h_user_s, $logged_hidden_online),
|
|
|
f2e824 |
'TOTAL_GUEST_USERS_ONLINE' => sprintf($l_g_user_s, $guest_counter),
|
|
|
f2e824 |
'LEGEND' => $legend,
|
|
|
f2e824 |
'PAGINATION' => $pagination,
|
|
|
f2e824 |
'PAGE_NUMBER' => on_page($counter, $config['topics_per_page'], $start),
|
|
|
f2e824 |
|
|
|
f2e824 |
'U_SORT_USERNAME' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=a&sd=' . (($sort_key == 'a' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
|
|
|
f2e824 |
'U_SORT_UPDATED' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=b&sd=' . (($sort_key == 'b' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
|
|
|
f2e824 |
'U_SORT_LOCATION' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=c&sd=' . (($sort_key == 'c' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
|
|
|
f2e824 |
|
|
|
f2e824 |
'U_SWITCH_GUEST_DISPLAY' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sg=' . ((int) !$show_guests)),
|
|
|
f2e824 |
'L_SWITCH_GUEST_DISPLAY' => ($show_guests) ? $user->lang['HIDE_GUESTS'] : $user->lang['DISPLAY_GUESTS'],
|
|
|
f2e824 |
'S_SWITCH_GUEST_DISPLAY' => ($config['load_online_guests']) ? true : false)
|
|
|
f2e824 |
);
|
|
|
f2e824 |
|
|
|
f2e824 |
// We do not need to load the who is online box here. ;)
|
|
|
f2e824 |
$config['load_online'] = false;
|
|
|
f2e824 |
|
|
|
f2e824 |
// Output the page
|
|
|
f2e824 |
page_header($user->lang['WHO_IS_ONLINE']);
|
|
|
f2e824 |
|
|
|
f2e824 |
$template->set_filenames(array(
|
|
|
f2e824 |
'body' => 'viewonline_body.html')
|
|
|
f2e824 |
);
|
|
|
f2e824 |
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
|
|
|
f2e824 |
|
|
|
f2e824 |
page_footer();
|
|
|
f2e824 |
|
|
|
f2e824 |
?>
|