summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaHostVar.php
blob: 45656d5e7e2416b56350c73a4571758344438b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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()
    {
    }
}