mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-18 04:29:28 +00:00
21 lines
509 B
PHP
21 lines
509 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'RoomInformation',
|
|
'customJSModules' => ['public/js/apps/Cis/RoomInformation.js'],
|
|
'customCSSs' => ['public/css/components/calendar.css']
|
|
);
|
|
|
|
$this->load->view('templates/CISVUE-Header', $includesArray);
|
|
?>
|
|
|
|
<div >
|
|
<h2>Room Information: <?php echo $ort_kurzbz ?></h2>
|
|
<hr>
|
|
<div id="content">
|
|
<room-information ort_kurzbz="<?php echo $ort_kurzbz ?>"></room-information>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISVUE-Footer', $includesArray); ?>
|