blob: 6efe2fe10add2452e64e17de20d791a5ef9ff456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_who_is_there.tpl,v 1.8 2006/09/03 20:14:58 squareing Exp $ *}
{bitmodule title="$moduleTitle" name="who_is_there"}
<div>
{if $logged_users eq 0}
{tr}No online users{/tr}
{else}
{$logged_users}
{if $logged_users>1}
{tr}online users{/tr}
{elseif $logged_users>0}
{tr}online user{/tr}
{/if}
{/if}
</div>
{section name=ix loop=$online_users}
{if $user and $gBitSystem->isFeatureActive( 'feature_messages' ) and $gBitUser->hasPermission( 'p_messages_send' )}
<a href="{$smarty.const.MESSAGES_PKG_URL}compose.php?to={$online_users[ix].user}" title="{tr}Send a message to{/tr} {$online_users[ix].user}">{biticon ipackage="icons" iname="mail-forward style="width:8px;height:8px;"" iexplain="send message"}</a>
{/if}
{if $online_users[ix].users_information eq 'public'}
{math equation="x - y" x=$smarty.now y=$online_users[ix].timestamp assign=idle}
<a href="{$smarty.const.USERS_PKG_URL}index.php?home={$online_users[ix].user}" title="{tr}More info about{/tr} {$online_users[ix].user} ({tr}idle{/tr} {$idle} {tr}seconds{/tr})">{$online_users[ix].user}</a><br />
{else}
{$online_users[ix].user}<br />
{/if}
{/section}
{/bitmodule}
|