Files
FHC-Core/application/views/templates/CISVUE-Footer.php
T
2022-12-15 09:42:28 +01:00

19 lines
409 B
PHP

<?php
$includesArray = array(
'title' => $title ?? 'FH-Complete',
'vue3' => true,
'bootstrap5' => true,
'fontawesome6' => true,
'axios027' => true,
'customJSModules' => array_merge([
'public/js/apps/Cis.js'
], $customJSModules ?? []),
'customCSSs' => array_merge([
'public/css/Cis4/Cis.css'
], $customCSSs ?? [])
);
?>
</main>
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>