icingaweb2-module-director/library/Director/Objects/IcingaScheduledDowntimeRanges.php
Thomas Gelf bfdcafca52 Ranges: common class, fix store/delete issues
This removes duplicate code, fixes some issues introduced with UUIDs and does
some cleanup

fixes #2415
fixes #2442
2021-12-14 08:33:50 +01:00

19 lines
453 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
use Countable;
use Iterator;
use Icinga\Module\Director\IcingaConfig\IcingaConfigRenderer;
class IcingaScheduledDowntimeRanges extends IcingaRanges implements Iterator, Countable, IcingaConfigRenderer
{
protected $rangeClass = IcingaScheduledDowntimeRange::class;
protected $objectIdColumn = 'scheduled_downtime_id';
public function toLegacyConfigString()
{
return '';
}
}