treemenu trial

This commit is contained in:
Harald Bamberger
2026-05-11 16:42:48 +02:00
parent bbb4f8a01c
commit 51d73c862b
6 changed files with 261 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
$config['stv_menu'] = array(
'library' => 'treemenu/StvMenuLib',
'children' => array(
'stg' => array(
'library' => 'treemenu/StgLib',
'children' => array(
'pre' => array(
'library' => 'treemenu/Prestudent'
),
'sem' => array(
'library' => 'treemenu/AusbSemester',
'children' => array(
'vbd' => array(
'library' => 'treemenu/Verband'
)
)
),
'orgform' => array(
'library' => 'treemenu/OrgForm',
'children' => array(
'pre' => array(
'library' => 'treemenu/Prestudent'
),
'sem' => array(
'library' => 'treemenu/AusbSemester',
'children' => array(
'vbd' => array(
'library' => 'treemenu/Verband'
)
)
)
)
)
)
),
'inout' => array(
'library' => 'treemenu/InOutLib'
),
)
);