summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/Dashlet/ServiceObjectDashlet.php
blob: 01fb800c21b239aae925cf0c35d973a1aaa3eef7 (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
<?php

namespace Icinga\Module\Director\Dashboard\Dashlet;

use Icinga\Module\Director\Acl;

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()
    {
        return ['director/services'];
    }

    public function isAllowed()
    {
        $acl = Acl::instance();
        return $acl->hasPermission('director/services')
            || $acl->hasPermission('director/service_sets');
    }
}