blob: e82409d973d1d7aa69de7f48d9f6dc106bf890a8 (
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
|
<? if (!empty($show['roomRequest'])) : ?>
<!--Raumanfragen-->
<?= $this->render_partial('course/timesrooms/_roomRequestInfo.php') ?>
<? endif ?>
<? if (Request::isXhr()): ?>
<?= $this->render_partial('course/timesrooms/_select_semester_range.php') ?>
<? endif ?>
<? if (!empty($show['regular'])) : ?>
<!--Regelmäßige Termine-->
<?= $this->render_partial('course/timesrooms/_regularEvents.php') ?>
<? endif ?>
<? if (!empty($show['irregular'])) : ?>
<!--Unregelmäßige Termine-->
<?= $this->render_partial('course/timesrooms/_irregularEvents') ?>
<? endif ?>
<? if (!empty($show['roomRequest'])) : ?>
<!--Raumanfrage-->
<?= $this->render_partial('course/timesrooms/_roomRequest.php') ?>
<? endif ?>
|