mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-02 13:00:16 +02:00
14 lines
254 B
PHP
14 lines
254 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
|
|
|
namespace Icinga\Web\Menu;
|
|
|
|
use Icinga\Web\Menu;
|
|
|
|
/**
|
|
* Renders the html content of a single menu item
|
|
*/
|
|
interface MenuItemRenderer {
|
|
public function render(Menu $menu);
|
|
}
|