mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'Info Center',
|
|
'jquery3' => true,
|
|
'jqueryui1' => true,
|
|
'jquerycheckboxes1' => true,
|
|
'bootstrap3' => true,
|
|
'fontawesome4' => true,
|
|
'sbadmintemplate3' => true,
|
|
'tablesorter2' => true,
|
|
'ajaxlib' => true,
|
|
'filterwidget' => true,
|
|
'navigationwidget' => true,
|
|
'dialoglib' => true,
|
|
'phrases' => array(
|
|
'person' => array('vorname', 'nachname'),
|
|
'ui' => array('bitteEintragWaehlen')
|
|
),
|
|
'customCSSs' => array('public/css/sbadmin2/tablesort_bootstrap.css', 'public/css/infocenter/infocenterPersonDataset.css'),
|
|
'customJSs' => array('public/js/bootstrapper.js', 'public/js/infocenter/rueckstellung.js', 'public/js/infocenter/infocenterPersonDataset.js')
|
|
)
|
|
);
|
|
?>
|
|
|
|
<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">
|
|
Electronic Onboarding
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<?php $this->load->view('system/infocenter/onboardingData.php'); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|