2016-10-27 19:58:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
|
|
|
|
class ObjectsDashboard extends Dashboard
|
|
|
|
{
|
|
|
|
protected $dashletNames = array(
|
|
|
|
'HostObject',
|
|
|
|
'ServiceObject',
|
|
|
|
'CommandObject',
|
2016-12-14 15:04:38 +01:00
|
|
|
'Notifications',
|
2016-10-27 19:58:31 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
public function getTitle()
|
|
|
|
{
|
|
|
|
return $this->translate('Define whatever you want to be monitored');
|
|
|
|
}
|
|
|
|
}
|