Log in

View Full Version : enhanced buddylist with additional information


MrZeropage
07-24-2004, 10:00 PM
I enhanced the buddylist a little, so that beside the name of the buddy you can see when this user had his last activity in the forum, which is most interesting for the offline-contacts.

In addition the administrators can even see what each online-buddy is currently doing in the board, same information as in "who is online", but within the buddylist.


Screenshot of my german version (buddylist) is attached to this posting.


The installation of this cute hack is quite simple:

Open /misc.php

Find:$phrasegroups = array('fronthelp');
and REPLACE with
$phrasegroups = array('fronthelp', 'wol');

Find: while ($buddy = $DB_site->fetch_array($buddys))
and add ABOVE
// enhanced buddylist by MrZeropage
require_once('./includes/functions_user.php');
$show['currentlocation'] = iif($permissions['wolpermissions'] & CANWHOSONLINE, true, false);
// end endhanced buddylist

Find $doneuser["$buddy[userid]"] = true;
and add BELOW
// enhanced buddylist by MrZeropage
$userinfo = verify_id('user', $buddy[userid], 1, 1, 15);
if (!$userinfo['invisible'] OR ($permissions['genericpermissions'] & CANSEEHIDDEN) OR $userinfo['userid'] == $bbuserinfo['userid'])
{
$show['lastactivity'] = true;
$userinfo['lastactivitydate'] = vbdate($vboptions['dateformat'], $userinfo['lastactivity'], true);
$userinfo['lastactivitytime'] = vbdate($vboptions['timeformat'], $userinfo['lastactivity'], true);
}
else
{
$show['lastactivity'] = false;
$userinfo['lastactivitydate'] = '';
$userinfo['lastactivitytime'] = '';
}
// end enhanced buddylist

Save the modified misc.php.


Now open the template buddylistbit and REPLACE its whole content with the following code:
<tr>
<td class="alt1"><a href="member.php?$session[sessionurl]u=$buddy[userid]" target="_blank"><img src="$stylevar[imgdir_statusicon]/user_$buddy[statusicon].gif" alt="" title="<phrase 1="$buddy[username]" 2="$buddy[statusicon]">$vbphrase[x_is_y]</phrase>" border="0" /></a></td>

<td class="alt2"><input type="checkbox" name="userid[]" id="buddy_$buddy[userid]" value="$buddy[userid]" /></td>

<td class="alt1" width="100%"><label class="smallfont" for="buddy_$buddy[userid]"><if condition="$show['highlightuser']"><span class="highlight"><b>$buddy[username]</b></span><else /><b>$buddy[username]</b></if>

<br>
<if condition="$bbuserinfo['usergroupid']==6">
<if condition="$show['currentlocation']"><div><if condition="$userinfo['action']">$userinfo[action] ($userinfo[where])</if></div></if>
</if>
<if condition="$show['lastactivity']"><div>$vbphrase[last_activity]: $userinfo[lastactivitydate] <span class="time">$userinfo[lastactivitytime]</span>&nbsp;</div></if>

</label></td>
</tr>

Save the template.

If you want everybody to see the information about the current location of each buddy (like in "who is online") instead of showing this information only to the administrators just remove the two colored line in the template-code above.
I did not test this if it works correctly, if the users can see any links to private forums ect. so use this feature at your own risk.



Now edit the template navbar to change the width of the buddylist-popup to 325 pixel:

<a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_buddy_list]</a>

Ths code comes up twice in the template, please edit both data to 325 pixel width.





Have fun :cool:

turbidblue
07-25-2004, 08:04 PM
worked like a charm!

the code you had as showing up twice in the navbar template, was only in mine once, and it still worked fine ;)

* turbidblue clicks install first!

;) thank you

the Sandman
07-25-2004, 08:11 PM
Does it add queries?

deathemperor
07-27-2004, 06:18 AM
I believe it doens't

Polo
07-27-2004, 12:12 PM
nice job ;)

Wayne Luke
07-27-2004, 05:25 PM
Does it add queries? It adds one query for every buddy on your buddy list. The function verify_id() results in a query to see if the ID is valid or not.

MustangLisa
08-09-2005, 07:13 PM
Where does this show up? I don't see it anywhere.

MrZeropage
08-09-2005, 07:20 PM
After installation you should open the buddylist to see the effect :)

yoyoyoyo
11-26-2005, 09:08 PM
any chance this will be ported to 3.5.X sometime?

T3MEDIA
12-09-2005, 08:23 PM
could you find sex using this idea? sex of the buddie online?

testebr
04-01-2007, 09:01 AM
any chance this will be ported and improved to 3.6.X sometime?

yoyoyoyo
11-01-2007, 01:05 AM
that would be great