2017-06-20 06:53:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
|
|
|
class IcingaTemplateChoiceHost extends IcingaTemplateChoice
|
|
|
|
{
|
|
|
|
protected $table = 'icinga_host_template_choice';
|
|
|
|
|
|
|
|
protected $objectTable = 'icinga_host';
|
2017-09-27 20:41:41 +02:00
|
|
|
|
|
|
|
protected $relations = array(
|
|
|
|
'required_template' => 'IcingaHost',
|
|
|
|
);
|
2017-06-20 06:53:12 +02:00
|
|
|
}
|