mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +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
16 lines
168 B
PHP
16 lines
168 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class NavigationHeaderWidget extends Widget
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function display($data)
|
|
{
|
|
$this->view('widgets/navigationHeader', $data);
|
|
}
|
|
}
|