mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 16:54:06 +02:00
HostsDashboard: introduce a new dashboard
This commit is contained in:
parent
ac815b14b6
commit
2038ab28d7
28
library/Director/Dashboard/HostsDashboard.php
Normal file
28
library/Director/Dashboard/HostsDashboard.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Dashboard;
|
||||
|
||||
class HostsDashboard extends Dashboard
|
||||
{
|
||||
protected $dashletNames = array(
|
||||
'Hosts',
|
||||
'HostTemplates',
|
||||
'HostGroups',
|
||||
'HostChoices',
|
||||
);
|
||||
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->translate('Manage your Icinga Hosts');
|
||||
}
|
||||
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->translate(
|
||||
'This is where you manage your Icinga 2 Host Checks. Host templates'
|
||||
. ' are your main building blocks. You can bundle them to "choices",'
|
||||
. ' allowing (or forcing) your users to choose among a given set of'
|
||||
. ' preconfigured templates.'
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user