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

    public function getTitle()
    {
        return $this->translate('Host Templates');
    }

    public function getSummary()
    {
        return $this->translate(
            'Manage your Host Templates. Use Fields to make it easy for'
            . ' your users to get them customized.'
        );
    }

    public function getUrl()
    {
        return 'director/hosts/templates';
    }

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