blob: 32b1cfa67c31f58ed0e93d496aa97a6bd2c2024d (
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 SelfServiceDashlet extends Dashlet
{
protected $icon = 'chat';
public function getTitle()
{
return $this->translate('Self Service API');
}
public function getSummary()
{
return $this->translate(
'Icinga Director offers a Self Service API, allowing new Icinga'
. ' nodes to register themselves'
);
}
public function getUrl()
{
return 'director/settings/self-service';
}
public function listRequiredPermissions()
{
return array('director/admin');
}
}
|