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

    protected $requiredStats = array('user');

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

    public function getSummary()
    {
        return $this->translate('Provide templates for your User objects.')
            . ' ' . $this->getTemplateSummaryText('user');
    }

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

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