blob: 4a601abefff882c89a316ac10913c57e709014bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Your room request from <?= date('d.m.Y', $request->mkdate) ?>
<?= $range_object instanceof Course ? sprintf('for the Course %s', htmlReady($range_object->getFullName())) : ''?> has been denied
<?= $request->last_modifier instanceof User
? 'by ' . $request->last_modifier->getFullName()
: ''
?>.
<? if ($request->reply_comment): ?>
Explanation/Comment: <?= $request->reply_comment ?>
<? endif ?>
The requested time ranges were:
<?= implode('', array_map(function($a) {
return "- " . $a . "\n";
}, $request->getTimeIntervalStrings()))?>
|