24 lines
433 B
PHP
24 lines
433 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Module\Director\Dashboard\Dashlet;
|
||
|
|
||
|
use DirectoryIterator;
|
||
|
use Icinga\Exception\ProgrammingError;
|
||
|
|
||
|
class TimeperiodObjectDashlet extends Dashlet
|
||
|
{
|
||
|
protected $icon = 'calendar';
|
||
|
|
||
|
protected $requiredStats = array('timeperiod');
|
||
|
|
||
|
public function getTitle()
|
||
|
{
|
||
|
return $this->translate('Timeperiods');
|
||
|
}
|
||
|
|
||
|
public function getUrl()
|
||
|
{
|
||
|
return 'director/timeperiods';
|
||
|
}
|
||
|
}
|