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