summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/Dashlet/DatalistDashlet.php
blob: bdf179f95080e9f898a3699f34d111ef8c6fd2ef (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 DatalistDashlet extends Dashlet
{
    protected $icon = 'sort-name-up';

    public function getTitle()
    {
        return $this->translate('Provide Data Lists');
    }

    public function getSummary()
    {
        return $this->translate(
            'Provide data lists to make life easier for your users'
        );
    }

    public function getUrl()
    {
        return 'director/data/lists';
    }

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