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()
|
||
|
{
|
||
|
}
|
||
|
}
|