icingaweb2-module-director/library/Director/Objects/IcingaTimePeriod.php

23 lines
529 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Objects;
2015-06-09 10:35:02 +02:00
class IcingaTimePeriod extends IcingaObject
{
protected $table = 'icinga_timeperiod';
protected $defaultProperties = array(
'id' => null,
'zone_id' => null,
'object_name' => null,
'object_type' => null,
'disabled' => 'n',
'display_name' => null,
'update_method' => null,
);
2015-06-26 16:45:44 +02:00
protected $supportsImports = true;
protected $supportsRanges = true;
}