mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 09:22:22 +00:00
27 lines
476 B
PHP
27 lines
476 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class Studentenverwaltung extends FHC_Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->load->library('AuthLib');
|
|
$this->load->library('PermissionLib');
|
|
|
|
$this->load->view('Studentenverwaltung', [
|
|
'permissions' => [
|
|
'student/bpk' => $this->permissionlib->isBerechtigt('student/bpk')
|
|
]
|
|
]);
|
|
}
|
|
}
|