2015-06-02 14:19:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2015-06-12 12:07:53 +02:00
|
|
|
class IcingaUserGroup extends IcingaObject
|
2015-06-02 14:19:05 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_usergroup';
|
|
|
|
|
2015-06-29 11:02:30 +02:00
|
|
|
protected $supportsImports = true;
|
|
|
|
|
2015-06-02 14:19:05 +02:00
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'object_name' => null,
|
|
|
|
'display_name' => null,
|
|
|
|
'object_type' => null,
|
|
|
|
'zone_id' => null,
|
|
|
|
);
|
|
|
|
}
|