From 825602f50932ba0eb6aa12e01223e9f4ddf0085b Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 1 Jun 2015 16:28:40 +0200 Subject: [PATCH] IcingaCommandArgument: new object type --- .../Objects/IcingaCommandArgument.php | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 library/Director/Objects/IcingaCommandArgument.php diff --git a/library/Director/Objects/IcingaCommandArgument.php b/library/Director/Objects/IcingaCommandArgument.php new file mode 100644 index 00000000..53822b2f --- /dev/null +++ b/library/Director/Objects/IcingaCommandArgument.php @@ -0,0 +1,38 @@ + null, + 'command_id' => null, + 'argument_name' => null, + 'argument_value' => null, + 'key_string' => null, + 'description' => null, + 'skip_key' => null, + 'set_if' => null, + 'sort_order' => null, + 'repeat_key' => null, + 'value_format' => null, + 'set_if_format' => null, + ); + + public function onInsert() + { + // No log right now, we have to handle "sub-objects" + } + + public function onUpdate() + { + // No log right now, we have to handle "sub-objects" + } + + public function onDelete() + { + // No log right now, we have to handle "sub-objects" + } +}