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

namespace Icinga\Module\Director\Dashboard\Dashlet;

use Icinga\Module\Director\Auth\Permission;

class DatafieldCategoryDashlet extends Dashlet
{
    protected $icon = 'th-list';

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

    public function getSummary()
    {
        return $this->translate(
            'Categories bring structure to your Data Fields'
        );
    }

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

    public function listRequiredPermissions()
    {
        return [Permission::ADMIN];
    }
}