blob: 44162a9c64c89c4479132a4e93ada59dd2325262 (
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 ServiceGroupsDashlet extends Dashlet
{
protected $icon = 'tags';
public function getTitle()
{
return $this->translate('Service Groups');
}
public function getSummary()
{
return $this->translate(
'Defining Service Groups get more structure. Great for Dashboards.'
. ' Notifications and Permissions might be based on groups.'
);
}
public function getUrl()
{
return 'director/servicegroups';
}
public function listRequiredPermissions()
{
return [Permission::ADMIN];
}
}
|