本文整理汇总了PHP中GWF_Session::getOnlineSessions方法的典型用法代码示例。如果您正苦于以下问题:PHP GWF_Session::getOnlineSessions方法的具体用法?PHP GWF_Session::getOnlineSessions怎么用?PHP GWF_Session::getOnlineSessions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GWF_Session
的用法示例。
在下文中一共展示了GWF_Session::getOnlineSessions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: displayHeaderOnline
public static function displayHeaderOnline(Module_WeChall $module, $max = 20)
{
$sessions = GWF_Session::getOnlineSessions();
$back = '';
$text = '';
$more = '';
$names = 0;
$online = 0;
foreach ($sessions as $sess) {
$sess instanceof GWF_Session;
$count = $sess->getVar('sessioncount');
$online += $count;
if (NULL !== ($user = $sess->getVar('sess_user'))) {
if (!$user instanceof GWF_User) {
continue;
}
if ($user->getID() === NULL || $user->isOptionEnabled(GWF_User::HIDE_ONLINE)) {
continue;
}
$names++;
if ($names <= $max) {
$multi = $count > 1 ? "(x{$count})" : '';
$text .= sprintf(', <a href="%s" title="%s">%s%s</a>', $user->getProfileHREF(), $module->lang('a_title', array($user->getVar('user_level'))), $user->displayUsername(), $multi);
} else {
$more = self::onlineMoreAnchor($module);
break;
}
}
}
// $back .= '<div class="wc_head_bigbox" style="max-width:30%;">';
$back .= '<div class="wc_head_bigbox" style="float:none;">';
$back .= '<div class="wc_head_title"><a href="' . GWF_WEB_ROOT . 'users/with/All/by/user_lastactivity/DESC/page-1">' . $module->lang('head_online', array($online)) . '</a></div>';
$back .= '<div class="wc_head_online">';
return $back . substr($text, 2) . $more . '</div></div>' . PHP_EOL;
}