Tabs Component

This commit is contained in:
cgfhtw
2023-12-01 12:43:39 +01:00
parent 776908792a
commit da9002356c
9 changed files with 213 additions and 74 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
use CI3_Events as Events;
/**
* NOTE(chris): example:
Events::on('stv_conf_student', function (&$res) {
$res['test'] = [
'title' => 'TEST',
'component' => './Stv/Studentenverwaltung/Details/Notizen.js'
];
});
*/