blob: 249d4d634b02a1fc797e6c4a99ac8a72bfd66854 (
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
33
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
use Icinga\Module\Director\Auth\Permission;
class HostGroupsDashlet extends Dashlet
{
protected $icon = 'tags';
public function getTitle()
{
return $this->translate('Host Groups');
}
public function getSummary()
{
return $this->translate(
'Define Host Groups to give your configuration more structure. They'
. ' are useful for Dashboards, Notifications or Restrictions'
);
}
public function getUrl()
{
return 'director/hostgroups';
}
public function listRequiredPermissions()
{
return [Permission::HOST_GROUPS];
}
}
|