mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-18 07:27:40 +02:00
25 lines
586 B
PHP
25 lines
586 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
use Icinga\Module\Director\Data\Db\DbObject;
|
|
|
|
class IcingaCommand extends DbObject
|
|
{
|
|
protected $table = 'icinga_command';
|
|
|
|
protected $keyName = 'id';
|
|
|
|
protected $autoincKeyName = 'id';
|
|
|
|
protected $defaultProperties = array(
|
|
'id' => null,
|
|
'object_name' => null,
|
|
'methods_execute' => null,
|
|
'command' => null,
|
|
'timeout' => null,
|
|
'zone_id' => null,
|
|
'object_type' => null,
|
|
);
|
|
}
|