2018-06-08 16:42:53 +02:00
|
|
|
<?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 getUrl()
|
|
|
|
{
|
2018-06-15 02:08:06 +02:00
|
|
|
return 'director/scheduled-downtimes/applyrules';
|
2018-06-08 16:42:53 +02:00
|
|
|
}
|
|
|
|
}
|