blob: 3fba4ba9e5ae3c9887a58804eba19c87ef04e84e (
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
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class UserGroupsDashlet extends Dashlet
{
protected $icon = 'tags';
public function getTitle()
{
return $this->translate('User Groups');
}
public function getSummary()
{
return $this->translate(
'Defining Notifications for User Groups instead of single Users'
. ' gives more flexibility'
);
}
public function getUrl()
{
return 'director/usergroups';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}
|