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