Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: online.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id$
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'online.php');
|
*/
define("IN_MYBB", 1); define('THIS_SCRIPT', 'online.php');
|
$templatelist = "online,online_row,online_row_ip,online_today,online_today_row,online_iplookup,mostonline";
| $templatelist = "online,online_row,online_row_ip,online_today,online_today_row";
|
require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php"; require_once MYBB_ROOT."inc/functions_online.php";
| require_once "./global.php"; require_once MYBB_ROOT."inc/functions_post.php"; require_once MYBB_ROOT."inc/functions_online.php";
|
Zeile 35 | Zeile 35 |
---|
$plugins->run_hooks("online_today_start");
|
$plugins->run_hooks("online_today_start");
|
$todaycount = 0; $stime = TIME_NOW-(60*60*24);
| $threshold = TIME_NOW-(60*60*24); $query = $db->simple_select("users", "COUNT(uid) AS users", "lastactive > '{$threshold}'"); $todaycount = $db->fetch_field($query, "users");
$query = $db->simple_select("users", "COUNT(uid) AS users", "lastactive > '{$threshold}' AND invisible = '1'"); $invis_count = $db->fetch_field($query, "users");
if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1) { $mybb->settings['threadsperpage'] = 20; } // Add pagination $perpage = $mybb->settings['threadsperpage'];
if(intval($mybb->input['page']) > 0) { $page = intval($mybb->input['page']); $start = ($page-1) * $perpage; $pages = ceil($todaycount / $perpage); if($page > $pages) { $start = 0; $page = 1; } } else { $start = 0; $page = 1; }
$query = $db->simple_select("users", "*", "lastactive > '{$threshold}'", array("order_by" => "lastactive", "order_dir" => "desc", "limit" => $perpage, "limit_start" => $start));
|
$todayrows = '';
|
$todayrows = '';
|
$query = $db->query(" SELECT u.* FROM ".TABLE_PREFIX."users u LEFT JOIN ".TABLE_PREFIX."usergroups g ON (g.gid=u.usergroup) WHERE u.lastactive > $stime ORDER BY u.lastactive DESC ");
| |
while($online = $db->fetch_array($query)) {
|
while($online = $db->fetch_array($query)) {
|
if($online['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $online['uid'] == $mybb->user['uid'])
| $invisiblemark = ''; if($online['invisible'] == 1)
|
{
|
{
|
if($online['invisible'] == 1) { $invisiblemark = "*"; } else { $invisiblemark = ""; }
| $invisiblemark = "*"; }
if($online['invisible'] != 1 || $mybb->usergroup['canviewwolinvis'] == 1 || $online['uid'] == $mybb->user['uid']) {
|
$username = $online['username']; $username = format_name($username, $online['usergroup'], $online['displaygroup']); $online['profilelink'] = build_profile_link($username, $online['uid']); $onlinetime = my_date($mybb->settings['timeformat'], $online['lastactive']);
|
$username = $online['username']; $username = format_name($username, $online['usergroup'], $online['displaygroup']); $online['profilelink'] = build_profile_link($username, $online['uid']); $onlinetime = my_date($mybb->settings['timeformat'], $online['lastactive']);
|
|
|
eval("\$todayrows .= \"".$templates->get("online_today_row")."\";"); }
|
eval("\$todayrows .= \"".$templates->get("online_today_row")."\";"); }
|
++$todaycount;
| |
}
|
}
|
|
|
if($todaycount == 1) { $onlinetoday = $lang->member_online_today;
|
if($todaycount == 1) { $onlinetoday = $lang->member_online_today;
|
} else {
| } else {
|
$onlinetoday = $lang->sprintf($lang->members_were_online_today, $todaycount); }
|
$onlinetoday = $lang->sprintf($lang->members_were_online_today, $todaycount); }
|
| if($invis_count) { $string = $lang->members_online_hidden;
if($invis_count == 1) { $string = $lang->member_online_hidden; }
$onlinetoday .= $lang->sprintf($string, $invis_count); }
$multipage = multipage($todaycount, $perpage, $page, "online.php?action=today");
|
$plugins->run_hooks("online_today_end");
| $plugins->run_hooks("online_today_end");
|
Zeile 90 | Zeile 128 |
---|
$refresh_string = "?sortby=username"; } elseif($mybb->input['sortby'] == "location")
|
$refresh_string = "?sortby=username"; } elseif($mybb->input['sortby'] == "location")
|
{
| {
|
$sql = "s.location, s.time DESC"; $refresh_string = "?sortby=location"; }
| $sql = "s.location, s.time DESC"; $refresh_string = "?sortby=location"; }
|
Zeile 132 | Zeile 170 |
---|
break; }
|
break; }
|
| if(!$mybb->settings['threadsperpage'] || (int)$mybb->settings['threadsperpage'] < 1) { $mybb->settings['threadsperpage'] = 20; }
|
// How many pages are there? $perpage = $mybb->settings['threadsperpage'];
| // How many pages are there? $perpage = $mybb->settings['threadsperpage'];
|