Embedded into FH-Complete Navigation

. Added navigation items to top and left side menu for
Lehrauftraege bestellen and Lehrauftraege erteilen.
. Added NavigationWidget to views.
This commit is contained in:
Cris
2019-10-01 14:28:15 +02:00
committed by hainberg
parent 15370267c6
commit dfe4e3d82c
3 changed files with 48 additions and 5 deletions
+41
View File
@@ -51,6 +51,13 @@ $config['navigation_header'] = array(
'sort' => 30,
'requiredPermissions' => 'infocenter:r'
),
'lehrauftrag' => array(
'link' => site_url('lehre/lehrauftrag/Lehrauftrag'),
'description' => 'Lehrauftrag',
'expand' => true,
'sort' => 40,
'requiredPermissions' => 'lehre:r'
)
)
),
'Personen' => array(
@@ -118,3 +125,37 @@ $config['navigation_menu']['organisation/Reihungstest/index'] = array(
'target' => '_blank'
)
);
$config['navigation_menu']['lehre/lehrauftrag/Lehrauftrag/index'] = array(
'lehrauftragBestellen' => array(
'link' => site_url('lehre/lehrauftrag/Lehrauftrag'),
'description' => 'Lehrauftrag bestellen',
'icon' => '',
'sort' => 1,
'target' => '_blank'
),
'lehrauftragErteilen' => array(
'link' => site_url('lehre/lehrauftrag/LehrauftragErteilen'),
'description' => 'Lehrauftrag erteilen',
'icon' => '',
'sort' => 1,
'target' => '_blank'
)
);
$config['navigation_menu']['lehre/lehrauftrag/LehrauftragErteilen/index'] = array(
'lehrauftragBestellen' => array(
'link' => site_url('lehre/lehrauftrag/Lehrauftrag'),
'description' => 'Lehrauftrag bestellen',
'icon' => '',
'sort' => 1,
'target' => '_blank'
),
'lehrauftragErteilen' => array(
'link' => site_url('lehre/lehrauftrag/LehrauftragErteilen'),
'description' => 'Lehrauftrag erteilen',
'icon' => '',
'sort' => 1,
'target' => '_blank'
)
);