aboutsummaryrefslogtreecommitdiff
path: root/templates/dates/date_html.php
blob: 3c4824696244277e75d1a6e2efd0c365623fc0fe (plain)
1
2
3
4
5
6
7
8
9
10
<?php
if (!isset($link)) $link = true;
echo $date->toString();
if ($date->getResourceId()) :
    echo ', '.  _("Ort:") .' ';
    echo implode(', ', getFormattedRooms([$date->getResourceId() => '1'], $link));
elseif ($date->getFreeRoomText()) :
    echo ', '.  _("Ort:") .' ';
    echo '(' . htmlReady($date->getFreeRoomText()) . ')';
endif ?>