2015-06-01 16:28:40 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
|
|
|
class IcingaCommandArgument extends IcingaObject
|
|
|
|
{
|
2015-07-02 14:31:35 +02:00
|
|
|
protected $keyName = 'id';
|
|
|
|
|
2015-06-01 16:28:40 +02:00
|
|
|
protected $table = 'icinga_command_argument';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => 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"
|
|
|
|
}
|
|
|
|
}
|