2015-06-02 10:49:31 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-03-09 20:53:57 +01:00
|
|
|
class IcingaHostGroup extends IcingaObjectGroup
|
2015-06-02 10:49:31 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_hostgroup';
|
2016-06-08 16:45:46 +02:00
|
|
|
|
|
|
|
// TODO: move to IcingaObjectGroup when supported for ServiceGroup
|
|
|
|
protected $supportsApplyRules = true;
|
2015-06-02 10:49:31 +02:00
|
|
|
}
|