mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-08 23:59:28 +00:00
16 lines
597 B
PHP
Executable File
16 lines
597 B
PHP
Executable File
<?php
|
|
$includesArray = ['title'=> 'Profil Änderungen',
|
|
'customJSModules'=> ['public/js/apps/Cis/ProfilUpdateRequests.js'],
|
|
'tabulator5'=> true,
|
|
'customCSSs'=>['public/css/components/FilterComponent.css','public/css/components/FormUnderline.css'],
|
|
];
|
|
|
|
$this->load->view('templates/CISHTML-Header',$includesArray);
|
|
?>
|
|
|
|
|
|
<div id="content">
|
|
<profil-update-view id="<?php echo isset($profil_update_id)?$profil_update_id:null ?>"></profil-update-view>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISHTML-Footer',$includesArray); ?>
|