blob: 086cb5604cfb01c4eb2ec73a84667b093538d243 (
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 IcingaCommandField extends IcingaObjectField
{
protected $keyName = array('command_id', 'datafield_id');
protected $table = 'icinga_command_field';
protected $defaultProperties = array(
'command_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
);
}
|