Files
FHC-Core/application/views/Cis/Profil.php
T

20 lines
594 B
PHP

<?php
$includesArray = array(
'title' => 'Stundenplan',
'customJSModules' => ['public/js/apps/Cis/ProfilApp.js'],
'customCSSs' => ['public/css/components/calendar.css']
);
$this->load->view('templates/CISHTML-Header', $includesArray);
?>
<div id="content">
<h2>Profil22</h2>
<hr>
<p><?php echo $uid; ?></p>
<!-- we can pass information from the php view file to the public js file through interpolating data from php into vue props -->
<Profil uid="<?php echo $uid ?>" pid="<?php echo $pid ?>"></Profil>
</div>
<?php $this->load->view('templates/CISHTML-Footer', $includesArray); ?>