mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-12 16:34:26 +02:00
30 lines
490 B
PHP
30 lines
490 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
class IcingaHostVar extends IcingaObject
|
|
{
|
|
protected $keyName = array('host_id', 'varname');
|
|
|
|
protected $table = 'icinga_host_var';
|
|
|
|
protected $defaultProperties = array(
|
|
'host_id' => null,
|
|
'varname' => null,
|
|
'varvalue' => null,
|
|
'format' => null,
|
|
);
|
|
|
|
public function onInsert()
|
|
{
|
|
}
|
|
|
|
public function onUpdate()
|
|
{
|
|
}
|
|
|
|
public function onDelete()
|
|
{
|
|
}
|
|
}
|