mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-28 08:14:04 +02:00
21 lines
528 B
PHP
21 lines
528 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
use Icinga\Module\Director\Data\Db\DbObject;
|
|
|
|
class IcingaTimePeriodRange extends DbObject
|
|
{
|
|
protected $keyName = array('timeperiod_id', 'timeperiod_key', 'range_type');
|
|
|
|
protected $table = 'icinga_timeperiod_range';
|
|
|
|
protected $defaultProperties = array(
|
|
'timeperiod_id' => null,
|
|
'timeperiod_key' => null,
|
|
'timeperiod_value' => null,
|
|
'range_type' => 'include',
|
|
'merge_behaviour' => 'set',
|
|
);
|
|
}
|