Files
FHC-Core/application/widgets/NavigationWidget.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

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');
}
}