mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
1ad45e4802
- Renamed widget FHC_navigation as NavigationMenuWidget - Added new widget NavigationWidget to create header and menu - Renamed view fhcnavheader as navigationHeader - Renamed view fhcnavigation as navigationMenu - Added new view navigation - InfoCenter controller creates the header array - NavigationHeaderWidget print the header items from an array
19 lines
288 B
PHP
19 lines
288 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class NavigationWidget extends Widget
|
|
{
|
|
const NAVIGATION_HEADER = 'navigationHeader'; //
|
|
const NAVIGATION_MENU = 'navigationMenu'; //
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function display($widgetData)
|
|
{
|
|
$this->view('widgets/navigation', array('widgetData' => $widgetData));
|
|
}
|
|
}
|