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

19 lines
434 B
PHP
Raw Normal View History

<?php
namespace Icinga\Module\Director\Objects;
class IcingaHostGroup extends IcingaObject
{
protected $table = 'icinga_hostgroup';
2015-06-29 10:20:15 +02:00
protected $supportsImports = true;
protected $defaultProperties = array(
'id' => null,
'object_name' => null,
'object_type' => null,
'disabled' => 'n',
'display_name' => null,
);
}