Here is how I set it up on my local dev site:
And this is the PHP code I wrote:
PHP Code:
global $vbulletin, $db;
$output = '<div class="restore"><ul>';
$users_visited = $vbulletin->db->query_read("
SELECT user.*
FROM " . TABLE_PREFIX . "user AS user
WHERE lastvisit >= " . TIMENOW . " - " . 7 * 86400 . "
ORDER BY lastvisit DESC
");
$vcount = 0;
while ($visitor = $db->fetch_array($users_visited))
{
$output .= '<li>' . visitor_link($visitor, $visitor['lastvisit']) . '</li>';
$vcount++;
}
$output .= '</ul></div>';
$output = '<div style="text-align: center; font-weight: bold; margin-bottom: 1em">' . $vcount . ' Visiting Members</div>' . $output;
return $output;
function visitor_link($user_name, $dateline)
{
global $vbulletin;
$link = 'member.php?do=getinfo&username=' . $user_name['username'];
if ($user_name['displaygroupid'])
{
$groupid = $user_name['displaygroupid'];
}
else
{
$groupid = $user_name['usergroupid'];
}
$open_tag = $vbulletin->usergroupcache[$groupid]['opentag'];
$close_tag = $vbulletin->usergroupcache[$groupid]['closetag'];
$title = 'Last Visited: ' . vbdate($vbulletin->options['dateformat'], $dateline, 1) . ' at ' . vbdate($vbulletin->options['timeformat'], $dateline);
return '<a title="' . $title . '" href="' . $link . '">' . $open_tag . $user_name['username'] . $close_tag . '</a>';
}
This is the result:
Each username is shown with their usergroup HTML markup in a bulleted list, and each username links to their profile, with a tooltip showing their last visit time.
Please give this a try, and let me know of any changes you would like.