blob: 10052bbdc71886bc3351dbdb94181cbb113e5d9f (
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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
<?php
/**
* @var ContactController $controller
* @var array $users
* @var bool $showGroups
* @var int $contact_count
* @var int $page
* @var int $limit
* @var bool $showOnlyBuddies
*/
$dimension = Avatar::getDimension(Avatar::SMALL);
?>
<div class="online-list">
<div id="online_contacts">
<table class="default">
<caption>
<?= _('Kontakte') ?>
</caption>
<colgroup>
<col width="<?= reset($dimension) ?>px">
<col>
<col>
<col width="1%">
</colgroup>
<? if (count($users['buddies']) > 0): ?>
<thead>
<tr>
<th colspan="2"><?= _('Name') ?></th>
<th><?= _('Letztes Lebenszeichen') ?></th>
<th class="actions"><?= _('Aktionen') ?></th>
</tr>
</thead>
<tbody>
<? $last_group = false;
foreach ($users['buddies'] as $buddy):
?>
<? if ($showGroups && $last_group !== $buddy['group']): ?>
<tr>
<th colspan="4">
<a href="<?= $controller->link_for('contact/index/' . ($buddy['group_id'] != 'all' ? $buddy['group_id'] : '')) ?>"
class="link-intern" style="color: #000;">
<?= htmlReady($buddy['group']) ?>
</a>
</th>
</tr>
<? $last_group = $buddy['group'];
endif;
?>
<?= $this->render_partial('online/user-row', ['user' => $buddy]) ?>
<? endforeach; ?>
</tbody>
<? else: ?>
<? if ($contact_count === 0): ?>
<tbody>
<tr>
<td colspan="4">
<?= _('Sie haben keine Kontakte ausgewählt.') ?>
</td>
</tr>
</tbody>
<? elseif (count($users['buddies']) === 0): ?>
<tbody>
<tr>
<td colspan="4">
<?= _('Es sind keine Ihrer Kontakte online.') ?>
</td>
</tr>
</tbody>
<? endif; ?>
<? endif; ?>
<tfoot>
<tr>
<td colspan="4">
<? printf(_('Zum Adressbuch (%u Einträge) klicken Sie %shier%s.'),
$contact_count,
'<a href="' . $controller->link_for('contact') . '">', '</a>') ?>
</td>
</tr>
</tfoot>
</table>
</div>
<? if (!$showOnlyBuddies): ?>
<div id="online_buddies">
<table class="default">
<caption>
<?= _('Andere NutzerInnen') ?>
<? if ($users['others'] > 0): ?>
<small>
(<?= sprintf(_('+ %u unsichtbare NutzerInnen'), $users['others']) ?>)
</small>
<? endif; ?>
</caption>
<colgroup>
<col width="<?= reset($dimension) ?>px">
<col>
<col>
<col width="1%">
</colgroup>
<? if (count($users['users']) > 0): ?>
<thead>
<tr>
<th colspan="2"><?= _('Name') ?></th>
<th><?= _('Letztes Lebenszeichen') ?></th>
<th class="actions"><?= _('Aktionen') ?></th>
</tr>
</thead>
<tbody>
<? foreach (array_slice($users['users'], $page * $limit, $limit) as $user): ?>
<?= $this->render_partial('online/user-row', compact('user')) ?>
<? endforeach; ?>
</tbody>
<? elseif ($users['others'] > 0): ?>
<tbody>
<tr>
<td colspan="4">
<?= _('Keine sichtbaren Nutzer online.') ?>
</td>
</tr>
</tbody>
<? else: ?>
<tbody>
<tr>
<td colspan="4">
<?= _('Kein anderer Nutzer ist online.') ?>
</td>
</tr>
</tbody>
<? endif; ?>
<tfoot>
<tr>
<td colspan="4" class="actions">
<?= Pagination::create(count($users['users']), $page, $limit)->asLinks() ?>
</td>
</tr>
</tfoot>
</table>
</div>
<? endif; ?>
</div>
|