mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
16 lines
281 B
PHP
Executable File
16 lines
281 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Renders the navigation widget making use of the NavigationMenuWidget and the NavigationHeaderWidget
|
|
*/
|
|
class NavigationWidget extends Widget
|
|
{
|
|
/**
|
|
* Renders the entire widget
|
|
*/
|
|
public function display($widgetData)
|
|
{
|
|
$this->view('widgets/navigation');
|
|
}
|
|
}
|