blob: 39c142136ea37228a34f67da2ab155503c8de9b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class HostsDashlet extends Dashlet
{
protected $icon = 'host';
public function getTitle()
{
return $this->translate('Hosts');
}
public function getSummary()
{
return $this->translate(
'This is where you add all your servers, containers, network or'
. ' sensor devices - and much more. Every subject worth to be'
. ' monitored'
);
}
public function getUrl()
{
return 'director/hosts';
}
public function listRequiredPermissions()
{
return ['director/hosts'];
}
}
|