add files for manipulating tabs from feature-30660

This commit is contained in:
Harald Bamberger
2023-12-20 14:30:11 +01:00
parent 52cc0db5da
commit d9cd3a0b1d
3 changed files with 150 additions and 0 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'
];
});
*/