blob: 65d8c8c7d528489ab580e06e7e3bec155b0dc9f0 (
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 CheckCommandsDashlet extends Dashlet
{
protected $icon = 'wrench';
public function getSummary()
{
return $this->translate(
'Manage definitions for your Commands that should be executed as'
. ' Check Plugins, Notifications or based on Events'
);
}
public function getTitle()
{
return $this->translate('Commands');
}
public function listRequiredPermissions()
{
return array('director/admin');
}
public function getUrl()
{
return 'director/commands';
}
}
|