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

namespace Icinga\Module\Director\Dashboard\Dashlet;

class ScheduledDowntimeApplyDashlet extends Dashlet
{
    protected $icon = 'plug';

    protected $requiredStats = ['scheduled_downtime'];

    public function getTitle()
    {
        return $this->translate('Scheduled Downtimes');
    }

    public function listRequiredPermissions()
    {
        return array('director/scheduled-downtimes');
    }

    public function getUrl()
    {
        return 'director/scheduled-downtimes/applyrules';
    }
}