mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
16 lines
217 B
PHP
Executable File
16 lines
217 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Renders the left side menu
|
|
*/
|
|
class NavigationMenuWidget extends Widget
|
|
{
|
|
/**
|
|
* Renders the left side menu
|
|
*/
|
|
public function display($widgetData)
|
|
{
|
|
$this->view('widgets/navigationMenu');
|
|
}
|
|
}
|