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