2015-06-02 11:56:42 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2015-06-12 12:02:51 +02:00
|
|
|
class IcingaServiceGroup extends IcingaObject
|
2015-06-02 11:56:42 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_servicegroup';
|
|
|
|
|
2015-06-29 10:28:57 +02:00
|
|
|
protected $supportsImports = true;
|
|
|
|
|
2015-06-02 11:56:42 +02:00
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'object_name' => null,
|
|
|
|
'display_name' => null,
|
|
|
|
'object_type' => null,
|
|
|
|
);
|
|
|
|
}
|