summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaServiceVar.php
blob: 0b855b2817782f7bc8cfebdc48eae6725758d82d (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 IcingaServiceVar extends IcingaObject
{
    protected $keyName = array('service_id', 'varname');

    protected $table = 'icinga_service_var';

    protected $defaultProperties = array(
        'service_id'   => null,
        'varname'   => null,
        'varvalue'  => null,
        'format'    => null,
    );

    public function onInsert()
    {
    }

    public function onUpdate()
    {
    }

    public function onDelete()
    {
    }
}