only adds the Events file from addons which are actually active and refactors the Lv Information into its own component

This commit is contained in:
SimonGschnell
2024-10-28 14:15:45 +01:00
parent b801401d2b
commit fbf0417269
5 changed files with 66 additions and 61 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
$includesArray = array(
'title' => 'LvInfo',
'customJSModules' => ['public/js/apps/Cis/LvInfo.js']
);
$this->load->view('templates/CISVUE-Header', $includesArray);
?>
<div id="content">
<Info studien_semester="<?= $studien_semester ?>" lehrveranstaltung_id="<?= $lvid ?>"></Info>
</div>
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>