summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaCommandField.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Director/Objects/IcingaCommandField.php')
-rw-r--r--library/Director/Objects/IcingaCommandField.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Director/Objects/IcingaCommandField.php b/library/Director/Objects/IcingaCommandField.php
new file mode 100644
index 0000000..086cb56
--- /dev/null
+++ b/library/Director/Objects/IcingaCommandField.php
@@ -0,0 +1,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,
+ );
+}