blob: 54d44e9cef40c4f8f6c315305598ae8b07721074 (
plain)
1
2
3
4
5
6
7
8
9
|
<? if (!empty($show_entry) && in_array($show_entry['type'], ['sem', 'virtual'])): ?>
<?= $this->render_partial('calendar/schedule/_entry_course.php') ?>
<? unset($show_entry) ?>
<? elseif (!empty($show_entry) && $show_entry['type'] === 'inst'): ?>
<?= $this->render_partial('calendar/schedule/_entry_inst.php') ?>
<? unset($show_entry) ?>
<? else : ?>
<?= $this->render_partial('calendar/schedule/_entry_schedule.php') ?>
<? endif ?>
|