blob: b4bee042a42c02db454bb2a9e8c2958f668532ee (
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 ServiceApplyRulesDashlet extends Dashlet
{
protected $icon = 'resize-full-alt';
public function getTitle()
{
return $this->translate('Service Apply Rules');
}
public function getSummary()
{
return $this->translate(
'Using Apply Rules a Service can be applied to multiple hosts at once,'
. ' based on filters dealing with any combination of their properties'
);
}
public function getUrl()
{
return 'director/services/applyrules';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}
|