2015-06-02 14:19:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-03-09 20:53:57 +01:00
|
|
|
class IcingaUserGroup extends IcingaObjectGroup
|
2015-06-02 14:19:05 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_usergroup';
|
2016-05-02 10:26:41 +02:00
|
|
|
|
2021-10-05 18:19:01 +02:00
|
|
|
protected $uuidColumn = 'uuid';
|
|
|
|
|
2018-06-08 20:45:02 +02:00
|
|
|
protected $defaultProperties = [
|
2016-10-29 01:29:33 +02:00
|
|
|
'id' => null,
|
2021-10-05 18:19:01 +02:00
|
|
|
'uuid' => null,
|
2016-10-29 01:29:33 +02:00
|
|
|
'object_name' => null,
|
|
|
|
'object_type' => null,
|
|
|
|
'disabled' => 'n',
|
|
|
|
'display_name' => null,
|
2018-07-13 10:35:28 +02:00
|
|
|
'zone_id' => null,
|
2018-06-08 20:45:02 +02:00
|
|
|
];
|
2016-10-29 01:29:33 +02:00
|
|
|
|
2018-07-13 10:35:28 +02:00
|
|
|
protected $relations = [
|
|
|
|
'zone' => 'IcingaZone',
|
|
|
|
];
|
2018-11-13 15:32:53 +01:00
|
|
|
|
|
|
|
protected function prefersGlobalZone()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-02 14:19:05 +02:00
|
|
|
}
|