Files
FHC-Core/application/widgets/NavigationWidget.php
T
2024-10-17 15:34:00 +02:00

16 lines
281 B
PHP

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