20 lines
387 B
PHP
20 lines
387 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Dashboard;
|
|
|
|
class ObjectsDashboard extends Dashboard
|
|
{
|
|
protected $dashletNames = array(
|
|
'HostObject',
|
|
'ServiceObject',
|
|
'CommandObject',
|
|
'Notifications',
|
|
'TimeperiodObject',
|
|
);
|
|
|
|
public function getTitle()
|
|
{
|
|
return $this->translate('Define whatever you want to be monitored');
|
|
}
|
|
}
|