summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/Dashlet/ServiceSetsDashlet.php
blob: f971d421828f5601c479965aaea7ec935589067f (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 ServiceSetsDashlet extends Dashlet
{
    protected $icon = 'services';

    public function getTitle()
    {
        return $this->translate('Service Sets');
    }

    public function getSummary()
    {
        return $this->translate(
            'Grouping your Services into Sets allow you to quickly assign services'
            . ' often used together in a single operation all at once'
        );
    }

    public function getUrl()
    {
        return 'director/services/sets';
    }

    public function listRequiredPermissions()
    {
        return array('director/servicesets');
    }
}