mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
17 lines
330 B
PHP
17 lines
330 B
PHP
<?php
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
use CI3_Events as Events;
|
|
|
|
// build the menu for fhc
|
|
|
|
/**
|
|
* NOTE(chris): example:
|
|
Events::on('stv_conf_student', function (&$res) {
|
|
$res['test'] = [
|
|
'title' => 'TEST',
|
|
'component' => './Stv/Studentenverwaltung/Details/Notizen.js'
|
|
];
|
|
});
|
|
*/
|