mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
17 lines
439 B
PHP
17 lines
439 B
PHP
<?php
|
|
$includesArray =array(
|
|
'title' => 'Infoterminal',
|
|
'tabulator5' => true,
|
|
'primevue3' => true,
|
|
);
|
|
$this->load->view(
|
|
'templates/CISVUE-Header',
|
|
$includesArray
|
|
);
|
|
?>
|
|
|
|
<iframe style="width:100%; height:90vh;" id="Infoterminal" src="<?php echo base_url() . 'cis/infoterminal/?forcelogin=true'; ?>" name="Infoterminal" frameborder="0" >
|
|
No iFrames
|
|
</iframe>
|
|
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>
|