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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?
# Lifter010: TODO
?>
<tr class="<?= $background ? $background : 'table_row_even' ?>">
<td width="1%" <?= $gruppe ? "class=\"$gruppe\"" : '' ?>>
<? if (!$is_buddy) : ?>
<a href="<?= URLHelper::getLink('online.php', ['cmd' => 'add_user',
'add_uname' => $tmp_online_uname]) ?>">
<?= Icon::create('arr_2left', 'sort', ['title' => _("zu den Buddies hinzufügen")])->asImg(16, ["style" => 'padding-right: 0.33em;', "class" => 'middle']) ?>
</a>
<? else : ?>
<? endif ?>
</td>
<td width="4%">
<a href="<?= URLHelper::getLink('dispatch.php/profile', ['username' => $tmp_online_uname]) ?>">
<?= Avatar::getAvatar($tmp_user_id)->getImageTag(Avatar::SMALL) ?>
</a>
</td>
<td width="66%">
<a href="<?= URLHelper::getLink('dispatch.php/profile', ['username' => $tmp_online_uname]) ?>">
<?= htmlReady($fullname) ?>
</a>
<? foreach (StudipKing::is_king($tmp_user_id, TRUE) as $type => $text) : ?>
<?= Icon::create('crown', 'sort', ['title' => $text, 'title' => $text, 'class' => 'text-bottom'])->asImg() ?>
<? endforeach ?>
</td>
<td width="20%">
<?= date("i:s", $zeit) ?>
</td>
<td width="3%" align="center">
<? if (class_exists("Blubber")) : ?>
<a href="<?= URLHelper::getLink('dispatch.php/course/streams/global', ['mention' => $tmp_online_uname]) ?>">
<?= Icon::create('blubber', 'clickable', ['title' => _("Blubber diesen Nutzer an"), 'class' => 'text-bottom'])->asImg() ?>
</a>
<? endif ?>
</td>
<td width="3%" align="center">
<a href="<?= URLHelper::getLink('dispatch.php/messages/write', ['rec_uname' => $tmp_online_uname]) ?>">
<?= Icon::create('mail', 'clickable', ['title' => _("Nachricht an Benutzer verschicken"), 'class' => 'text-bottom'])->asImg() ?>
</a>
</td>
<td width="3%" align="center">
<? if ($is_buddy) : ?>
<a href="<?= URLHelper::getLink("online.php",
["cmd" => "delete_user",
"delete_uname" => $tmp_online_uname]) ?>">
<?= Icon::create('trash', 'clickable', ['title' => _("aus der Buddy-Liste entfernen"), 'class' => 'text-bottom'])->asImg() ?>
</a>
<? else : ?>
<? endif ?>
</td>
</tr>
|