mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 00:49:28 +00:00
43 lines
939 B
PHP
43 lines
939 B
PHP
<?php
|
|
$this->load->view(
|
|
'templates/FHC-Header',
|
|
array(
|
|
'title' => 'ZGV Info',
|
|
'jquery3' => true,
|
|
'bootstrap3' => true,
|
|
'fontawesome4' => true,
|
|
'sbadmintemplate3' => true,
|
|
'customCSSs' => 'public/css/sbadmin2/admintemplate_contentonly.css'
|
|
)
|
|
);
|
|
?>
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="page-wrapper">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h3 class="page-header">
|
|
<?php echo $this->p->t('infocenter', 'zugangsvoraussetzungen'); ?>
|
|
<?php echo $studiengang_kurzbz; ?> -
|
|
<?php echo $studiengang_bezeichnung; ?>
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<div id="data">
|
|
<?php if ($data == null): ?>
|
|
<?php echo $this->p->t('infocenter', 'keineZugangsvoraussetzungenTxt'); ?>
|
|
<?php
|
|
else:
|
|
echo json_decode($data);
|
|
endif;
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer'); ?>
|
|
|