mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-23 06:59:28 +00:00
38 lines
639 B
PHP
38 lines
639 B
PHP
<?php
|
|
require_once APPPATH . 'libraries/treemenu/TreeMenuLib.php';
|
|
|
|
/**
|
|
* Description of PreStudentLib
|
|
*
|
|
* @author bambi
|
|
*/
|
|
class PreStudentLib extends TreeMenuLib
|
|
{
|
|
public function getNodes($params=array())
|
|
{
|
|
return [
|
|
[
|
|
'name' => 'International',
|
|
'link' => 'inout',
|
|
'children' => [
|
|
[
|
|
'name' => 'Incoming',
|
|
'link' => 'inout/incoming',
|
|
'leaf' => true
|
|
],
|
|
[
|
|
'name' => 'Outgoing',
|
|
'link' => 'inout/outgoing',
|
|
'leaf' => true
|
|
],
|
|
[
|
|
'name' => 'Gemeinsame Studien',
|
|
'link' => 'inout/gemeinsamestudien',
|
|
'leaf' => true
|
|
]
|
|
]
|
|
]
|
|
];
|
|
}
|
|
}
|