mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-15 04:00:12 +02:00
12 lines
213 B
PHP
12 lines
213 B
PHP
<?php
|
|
|
|
namespace Icinga\Web\Menu;
|
|
|
|
class ProblemMenuItemRenderer extends MonitoringMenuItemRenderer
|
|
{
|
|
protected $columns = array(
|
|
'hosts_down_unhandled',
|
|
'services_critical_unhandled'
|
|
);
|
|
}
|