icingaweb2-module-director/library/Director/Dashboard/Dashlet/ScheduledDowntimeApplyDashlet.php
Thomas Gelf c5e25cdcc7 ScheduledDowntime: introduce a new permission...
...and a related name-based restriction

fixes #2086
2021-04-23 12:33:42 +02:00

26 lines
515 B
PHP

<?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';
}
}