mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-09 08:09:28 +00:00
dd610c83d9
- Addded controller system/Navigation to retrive menus via ajax - Renamed method _setNavigationMenuArray to setNavigationMenuArray and set as public in system/infocenter/InfoCenter - Now the InfoCenter menu is stored in the session - The menu is generated by the widget NavigationWidget via JS - No need anymore to give as parameters to the views the menu arrays
10 lines
267 B
PHP
10 lines
267 B
PHP
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0">
|
|
<?php
|
|
// Header
|
|
echo $this->widgetlib->widget('NavigationHeaderWidget');
|
|
|
|
// Left menu
|
|
echo $this->widgetlib->widget('NavigationMenuWidget');
|
|
?>
|
|
</nav>
|