mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-17 05:00:10 +02:00
Add the option to define custom renderers for menu items and implement renderers to display all unhandled services and host in a badge in the navigation. resolves #7114
15 lines
248 B
PHP
15 lines
248 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Web\Menu;
|
|
|
|
use Icinga\Web\Menu;
|
|
|
|
/**
|
|
* Renders the html content of a single menu item
|
|
*/
|
|
interface MenuItemRenderer {
|
|
public function render(Menu $menu);
|
|
}
|