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

    protected $requiredStats = array('notification');

    public function getTitle()
    {
        return $this->translate('Notification templates');
    }

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

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

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