blob: 0a640ae9412f405838179f88f631f650461dd0a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class NotificationCommandsDashlet extends CheckCommandsDashlet
{
protected $icon = 'wrench';
public function getSummary()
{
return $this->translate(
'Notification Commands allow you to trigger any action you want when'
. ' a notification takes place'
);
}
public function getTitle()
{
return $this->translate('Notification Commands');
}
}
|