blob: bad281b62ed86a65ed8bbb9e9c8e49aaccf7f98f (
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
|
<?php
if (!isset($show)) $show = 3;
if (!isset($link)) $link = true;
if (is_array($dates['regular']['turnus_data'])) foreach ($dates['regular']['turnus_data'] as $cycle) :
$pos = 0;
if ($cycle['metadate_id'] == $cycle_id && is_array($cycle['assigned_rooms'])) foreach ($cycle['assigned_rooms'] as $resource_id => $count) :
// get string-representation of predominant booked rooms
if ($pos >= $show) :
if ($show > 1)$roominfo .= ', '.sprintf(_("und %s weitere"), (sizeof($rooms)-$show));
break;
else :
if ($pos > 0) $roominfo .= ', ';
$room = Room::find($resource_id);
if ($link) :
$roominfo .= '<a href="' . $room->getActionLink('show') . '" data-dialog="1">'
. htmlReady($room->name) . '</a>';
else :
$roominfo .= htmlReady($room->name);
endif;
endif;
$pos++;
endforeach; ?>
<?= $roominfo ?>
<? $roominfo = '';
endforeach ?>
|