IcingaCommand: prepare argument handling
This commit is contained in:
parent
1936ad8997
commit
7b1fda25bd
|
@ -8,6 +8,8 @@ class IcingaCommand extends IcingaObject
|
|||
{
|
||||
protected $table = 'icinga_command';
|
||||
|
||||
protected $type = 'CheckCommand';
|
||||
|
||||
protected $defaultProperties = array(
|
||||
'id' => null,
|
||||
'object_name' => null,
|
||||
|
@ -20,8 +22,12 @@ class IcingaCommand extends IcingaObject
|
|||
|
||||
protected $supportsCustomVars = true;
|
||||
|
||||
protected $supportsFields = true;
|
||||
|
||||
protected $supportsImports = true;
|
||||
|
||||
protected $supportsArguments = true;
|
||||
|
||||
protected function renderMethods_execute()
|
||||
{
|
||||
// Execute is a reserved word in SQL, column name was prefixed
|
||||
|
|
Loading…
Reference in New Issue