blob: e0b0443caa083f51969df56ed46dcb16a63b048f (
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
34
35
36
37
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class NotificationApplyDashlet extends Dashlet
{
protected $icon = 'bell';
protected $requiredStats = array('notification');
public function getTitle()
{
return $this->translate('Notifications');
}
public function getSummary()
{
return $this->translate(
'Apply notifications with specific properties according to given rules.'
) . ' ' . $this->getApplySummaryText('notification');
}
public function shouldBeShown()
{
return $this->getStats('notification', 'template') > 0;
}
public function listRequiredPermissions()
{
return array('director/notifications');
}
public function getUrl()
{
return 'director/notifications/applyrules';
}
}
|