mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-03-11 02:10:37 -04:00
12 lines
203 B
PHP
12 lines
203 B
PHP
<?php
|
|
|
|
namespace Icinga\Web\Menu;
|
|
|
|
use Icinga\Web\Menu;
|
|
|
|
class UnhandledHostMenuItemRenderer extends MonitoringMenuItemRenderer
|
|
{
|
|
protected $columns = array(
|
|
'hosts_down_unhandled',
|
|
);
|
|
}
|