mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
21 lines
480 B
PHP
21 lines
480 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'Dashboard',
|
|
'tabulator5'=>true,
|
|
'primevue3' => true,
|
|
'customJSModules' => ['public/js/apps/Dashboard/Fhc.js'],
|
|
'customCSSs' => [
|
|
'public/css/components/dashboard.css'
|
|
],
|
|
);
|
|
|
|
$this->load->view('templates/CISVUE-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="content">
|
|
<fhc-dashboard dashboard="CIS" view-data-string='<?php echo json_encode($viewData) ?>' />
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>
|
|
|