mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-18 12:39:29 +00:00
0f798faab5
- Changed URI of path from system/infocenter/InfoCenter/infocenterFreigegeben to system/infocenter/InfoCenter/freigegeben in navigation config - Moved the logic from Navigation controller to NavigationLib - Added private method _loadNavigationLib to Navigation controller to load the NavigationLib with parameters - Navigation controller now extends FHC_Controller - Added NavigationLib to collect all the logic used by the NavigationWidget components - Remove the handle of the fhc_controller_id from the NavigationWidget.js - NavigationWidget.js now uses better tools that came from the AjaxLib - Adapted InfoCenter controller to work with the new tools from NavigationWidget - infocenterPersonDataset.js->refreshSideMenu now uses the parameter navigation_page in the ajax call - Renamed InfoCenter controller method from infocenterFreigegeben to freigegeben - Now methods index, freigegeben and showDetails generates their own left menu - showDetails generate a left menu based on the origin page (index or freigegeben) - freigegeben uses its own filters now - Added view infocenterFreigegebenData.php
77 lines
1.7 KiB
PHP
77 lines
1.7 KiB
PHP
<?php
|
|
|
|
$config['navigation_header'] = array(
|
|
'*' => array(
|
|
'FH-Complete' => site_url(''),
|
|
'Vilesci' => base_url('/vilesci'),
|
|
'CIS' => CIS_ROOT
|
|
)
|
|
);
|
|
|
|
$config['navigation_menu'] = array();
|
|
|
|
$config['navigation_menu']['Vilesci/index'] = array(
|
|
'Dashboard' => array(
|
|
'link' => '#',
|
|
'description' => 'Dashboard',
|
|
'icon' => 'dashboard'
|
|
),
|
|
'Lehre' => array(
|
|
'link' => '#',
|
|
'icon' => 'graduation-cap',
|
|
'description' => 'Lehre',
|
|
'expand' => true,
|
|
'children'=> array(
|
|
'CIS' => array(
|
|
'link' => CIS_ROOT,
|
|
'icon' => '',
|
|
'description' => 'CIS',
|
|
'expand' => true
|
|
),
|
|
'Infocenter' => array(
|
|
'link' => site_url('/system/infocenter/InfoCenter'),
|
|
'icon' => 'info',
|
|
'description' => 'Infocenter',
|
|
'expand' => true
|
|
),
|
|
)
|
|
),
|
|
'Administration' => array(
|
|
'link' => '#',
|
|
'icon' => 'gear',
|
|
'description' => 'Administration',
|
|
'expand' => false,
|
|
'children'=> array(
|
|
'Vilesci' => array(
|
|
'link' => base_url('vilesci/'),
|
|
'icon' => '',
|
|
'description' => 'Vilesci',
|
|
'expand' => true
|
|
),
|
|
'Extensions' => array(
|
|
'link' => site_url('/system/extensions/Manager'),
|
|
'icon' => 'cubes',
|
|
'description' => 'Extensions Manager',
|
|
'expand' => true
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
|
|
$config['navigation_menu']['system/infocenter/InfoCenter/index'] = array(
|
|
'Freigegeben' => array(
|
|
'link' => base_url('index.ci.php/system/infocenter/InfoCenter/freigegeben'),
|
|
'description' => 'Freigegeben',
|
|
'icon' => 'thumbs-up'
|
|
)
|
|
);
|
|
|
|
$config['navigation_menu']['system/infocenter/InfoCenter/freigegeben'] = array(
|
|
'Zurück' => array(
|
|
'link' => base_url('index.ci.php/system/infocenter/InfoCenter/index'),
|
|
'description' => 'Home',
|
|
'icon' => 'angle-left'
|
|
)
|
|
);
|