icingaweb2-module-director/library/Director/Objects/IcingaHostVar.php

30 lines
490 B
PHP
Raw Normal View History

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