mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-21 17:02:19 +00:00
dba08d4d9e
- Added the feature to the FilterWidget to use this identifier to create a different session for each FilterWidget
41 lines
937 B
PHP
41 lines
937 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', array('fhc_controller_id' => $fhc_controller_id));
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|