blob: 435d0cbbb27f1574c047f74704c8679bca74845c (
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 ExternalNotificationCommandsDashlet extends CheckCommandsDashlet
{
protected $icon = 'wrench';
public function getSummary()
{
return $this->translate(
'External Notification Commands have been defined in your local Icinga 2'
. ' Configuration.'
);
}
public function getTitle()
{
return $this->translate('External Notification Commands');
}
}
|