2016-10-13 10:33:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
|
|
|
use Countable;
|
2018-06-08 13:07:12 +02:00
|
|
|
use Iterator;
|
|
|
|
use Icinga\Module\Director\IcingaConfig\IcingaConfigRenderer;
|
2016-10-13 10:33:10 +02:00
|
|
|
|
2021-12-14 08:33:50 +01:00
|
|
|
class IcingaScheduledDowntimeRanges extends IcingaRanges implements Iterator, Countable, IcingaConfigRenderer
|
2016-10-13 10:33:10 +02:00
|
|
|
{
|
2021-12-14 08:33:50 +01:00
|
|
|
protected $rangeClass = IcingaScheduledDowntimeRange::class;
|
|
|
|
protected $objectIdColumn = 'scheduled_downtime_id';
|
2016-10-13 10:33:10 +02:00
|
|
|
|
2018-06-08 13:07:12 +02:00
|
|
|
public function toLegacyConfigString()
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
2016-10-13 10:33:10 +02:00
|
|
|
}
|