2015-08-29 01:13:53 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2016-12-07 09:38:33 +01:00
|
|
|
class IcingaCommandField extends IcingaObjectField
|
2015-08-29 01:13:53 +02:00
|
|
|
{
|
|
|
|
protected $keyName = array('command_id', 'datafield_id');
|
|
|
|
|
|
|
|
protected $table = 'icinga_command_field';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
2016-12-07 09:38:33 +01:00
|
|
|
'command_id' => null,
|
|
|
|
'datafield_id' => null,
|
|
|
|
'is_required' => null,
|
|
|
|
'var_filter' => null,
|
2015-08-29 01:13:53 +02:00
|
|
|
);
|
|
|
|
}
|