blob: f0147e8c3d519263cdc38d66ca7965f35cf76025 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<? if ($derived_resource instanceof Room): ?>
The room <?= $derived_resource->name ?> has been locked for bookings in the time range from <?= date('d.m.Y H:i', $booking->begin) ?> to <?= date('d.m.Y H:i', $booking->end) ?>.
<? elseif ($derived_resource instanceof Building): ?>
The building <?= $derived_resource->name ?> has been locked for bookings in the time range
from <?= date('d.m.Y H:i', $booking->begin) ?> to <?= date('d.m.Y H:i', $booking->end) ?>.
<? elseif ($derived_resource instanceof Building): ?>
The location <?= $derived_resource->name ?> has been locked for bookings in the time range from <?= date('d.m.Y H:i', $booking->begin) ?> to <?= date('d.m.Y H:i', $booking->end) ?>.
<? else: ?>
The resource <?= $derived_resource->name ?> has been locked for bookings in the time range from <?= date('d.m.Y H:i', $booking->begin) ?> to <?= date('d.m.Y H:i', $booking->end) ?>.
<? endif ?>
|