blob: 919c06be0924bb500bdb55b572456bbc9ec03dd0 (
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
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
class CustomvarDashlet extends Dashlet
{
protected $icon = 'keyboard';
public function getTitle()
{
return $this->translate('CustomVar Overview');
}
public function getSummary()
{
return $this->translate(
'Get an overview of used CustomVars and their variants'
);
}
public function getUrl()
{
return 'director/data/vars';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}
|