mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-03 11:59:29 +00:00
dd610c83d9
- Addded controller system/Navigation to retrive menus via ajax - Renamed method _setNavigationMenuArray to setNavigationMenuArray and set as public in system/infocenter/InfoCenter - Now the InfoCenter menu is stored in the session - The menu is generated by the widget NavigationWidget via JS - No need anymore to give as parameters to the views the menu arrays
41 lines
887 B
PHP
41 lines
887 B
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'Info Center',
|
|
'jquery' => true,
|
|
'jqueryui' => true,
|
|
'bootstrap' => true,
|
|
'fontawesome' => true,
|
|
'sbadmintemplate' => true,
|
|
'tablesorter' => true,
|
|
'customCSSs' => 'skin/tablesort_bootstrap.css',
|
|
'customJSs' => array('include/js/bootstrapper.js', 'include/js/infocenter/infocenterPersonDataset.js')
|
|
)
|
|
);
|
|
?>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
|
|
<?php echo $this->widgetlib->widget('NavigationWidget'); ?>
|
|
|
|
<div id="page-wrapper">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h3 class="page-header">Infocenter Übersicht</h3>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<?php
|
|
$this->load->view('system/infocenter/infocenterData.php');
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|