2015-06-02 14:19:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-05-02 10:26:41 +02:00
|
|
|
use Icinga\Module\Director\IcingaConfig\IcingaConfig;
|
|
|
|
|
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
|
|
|
|
2016-10-29 01:29:33 +02:00
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'object_name' => null,
|
|
|
|
'object_type' => null,
|
|
|
|
'disabled' => 'n',
|
|
|
|
'display_name' => null,
|
|
|
|
);
|
|
|
|
|
2016-05-02 10:26:41 +02:00
|
|
|
public function getRenderingZone(IcingaConfig $config = null)
|
|
|
|
{
|
|
|
|
return $this->connection->getMasterZoneName();
|
|
|
|
}
|
2015-06-02 14:19:05 +02:00
|
|
|
}
|