mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
16 lines
215 B
PHP
Executable File
16 lines
215 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Renders the header menu
|
|
*/
|
|
class NavigationHeaderWidget extends Widget
|
|
{
|
|
/**
|
|
* Renders the header menu
|
|
*/
|
|
public function display($widgetData)
|
|
{
|
|
$this->view('widgets/navigationHeader');
|
|
}
|
|
}
|