This commit is contained in:
cgfhtw
2023-01-16 10:32:24 +01:00
parent ebc7b5a3d9
commit 2f2f19306b
19 changed files with 1447 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<?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');
}
}