restructuring controller

This commit is contained in:
Simon Gschnell
2023-12-05 10:39:39 +01:00
parent 71fda916a3
commit 087bf229af
9 changed files with 1511 additions and 90 deletions
+13 -6
View File
@@ -1,22 +1,29 @@
<?php
$includesArray = array(
'title' => 'Stundenplan',
'customJSModules' => ['public/js/apps/Cis/ProfilApp.js'],
'customJSModules' => ['public/js/apps/Cis/Profil.js'],
'tabulator5' => true,
'customCSSs' => ['public/css/components/calendar.css', 'public/css/components/FilterComponent.css'],
'childs' => ['test1','test2','test3','test4']
);
$this->load->view('templates/CISHTML-Header', $includesArray);
?>
<!--
<div id="content">
<student-profil></student-profil>
<component :is="StudentProfil"></component>
<h2>Profil</h2>
<hr>
<!-- we can pass information from the php view file to the public js file throughz interpolating data from php into vue props -->
<Profil <?php echo "uid=$uid" ?> view=<?php echo $view? boolval(1): boolval(0); ?>></Profil>
<component :is="<?php //echo "StudentProfil"; ?>" ></component>
we can pass information from the php view file to the public js file throughz interpolating data from php into vue props
<Profil <?php //echo "uid=$uid" ?> view=<?php //echo $view? boolval(1): boolval(0); ?>></Profil>
-->
<div id="content" >
</div>
<?php $this->load->view('templates/CISHTML-Footer', $includesArray); ?>