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

    public function getTitle()
    {
        return $this->translate('Director Settings');
    }

    public function getSummary()
    {
        return $this->translate(
            'Tweak some global Director settings'
        );
    }

    public function getUrl()
    {
        return 'director/config/settings';
    }

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