2014-09-05 17:57:20 +02:00
|
|
|
<?php
|
2015-02-04 10:46:36 +01:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
|
2014-09-05 17:57:20 +02:00
|
|
|
|
|
|
|
namespace Icinga\Web\Menu;
|
|
|
|
|
|
|
|
use Icinga\Web\Menu;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the html content of a single menu item
|
|
|
|
*/
|
|
|
|
interface MenuItemRenderer {
|
|
|
|
public function render(Menu $menu);
|
|
|
|
}
|