blob: b68c9d434f6571e0dd599129023eedb72a098b7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Icinga\Module\Director\Objects;
class IcingaHostField extends IcingaObjectField
{
protected $keyName = array('host_id', 'datafield_id');
protected $table = 'icinga_host_field';
protected $defaultProperties = array(
'host_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
);
}
|