summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/Dashlet/ActivityLogDashlet.php
blob: 9794986dabda5ce3e0651e66853a564f03bcdbeb (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
33
34
35
<?php

namespace Icinga\Module\Director\Dashboard\Dashlet;

class ActivityLogDashlet extends Dashlet
{
    protected $icon = 'book';

    public function getTitle()
    {
        return $this->translate('Activity Log');
    }

    public function getSummary()
    {
        return $this->translate(
            'Wondering about what changed why? Track your changes!'
        );
    }

    public function listCssClasses()
    {
        return 'state-ok';
    }

    public function getUrl()
    {
        return 'director/config/activities';
    }

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