blob: 087590b7389bce1a82c32773f755cfb067d3002b (
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
32
33
34
35
36
|
<?php
namespace Icinga\Module\Director\Dashboard\Dashlet;
use Icinga\Module\Director\Acl;
use Icinga\Module\Director\Auth\Permission;
use RuntimeException;
class ServiceObjectDashlet extends Dashlet
{
protected $icon = 'services';
protected $requiredStats = array('service', 'servicegroup');
public function getTitle()
{
return $this->translate('Monitored Services');
}
public function getUrl()
{
return 'director/dashboard?name=services';
}
public function listRequiredPermissions()
{
throw new RuntimeException('This method should not be accessed, isAllowed() has been implemented');
}
public function isAllowed()
{
$acl = Acl::instance();
return $acl->hasPermission(Permission::SERVICES)
|| $acl->hasPermission(Permission::SERVICE_SETS);
}
}
|