mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +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
16 lines
155 B
PHP
16 lines
155 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class NavigationWidget extends Widget
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function display($widgetData)
|
|
{
|
|
$this->view('widgets/navigation');
|
|
}
|
|
}
|