icingaweb2-module-director/library/Director/Objects/IcingaCommandField.php

18 lines
393 B
PHP
Raw Normal View History

2015-08-29 01:13:53 +02:00
<?php
namespace Icinga\Module\Director\Objects;
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(
'command_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
2015-08-29 01:13:53 +02:00
);
}