Files
FHC-Core/application/controllers/Cis/MyLv.php
T
cgfhtw 2f2f19306b MyLv
2023-01-16 10:32:24 +01:00

37 lines
596 B
PHP

<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
*
*/
class MyLv extends Auth_Controller
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct([
'index' => 'student/anrechnung_beantragen:r' // TODO(chris): permissions?
]);
// Loads phrases system
$this->loadPhrases([
'global'
]);
}
// -----------------------------------------------------------------------------------------------------------------
// Public methods
/**
* @return void
*/
public function index()
{
$this->load->view('Cis/MyLv');
}
}