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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model;
use ipl\Orm\Behavior\Binary;
use ipl\Orm\Behaviors;
use ipl\Orm\Model;
use ipl\Orm\Relations;
class Customvar extends Model
{
public function getTableName()
{
return 'customvar';
}
public function getKeyName()
{
return 'id';
}
public function getColumns()
{
return [
'environment_id',
'name_checksum',
'name',
'value'
];
}
public function createBehaviors(Behaviors $behaviors)
{
$behaviors->add(new Binary([
'id',
'environment_id',
'name_checksum'
]));
}
public function createRelations(Relations $relations)
{
$relations->belongsTo('environment', Environment::class);
$relations->belongsToMany('checkcommand', Checkcommand::class)
->through(CheckcommandCustomvar::class);
$relations->belongsToMany('eventcommand', Eventcommand::class)
->through(EventcommandCustomvar::class);
$relations->belongsToMany('host', Host::class)
->through(HostCustomvar::class);
$relations->belongsToMany('hostgroup', Hostgroup::class)
->through(HostgroupCustomvar::class);
$relations->belongsToMany('notification', Notification::class)
->through(NotificationCustomvar::class);
$relations->belongsToMany('notificationcommand', Notificationcommand::class)
->through(NotificationcommandCustomvar::class);
$relations->belongsToMany('service', Service::class)
->through(ServiceCustomvar::class);
$relations->belongsToMany('servicegroup', Servicegroup::class)
->through(ServicegroupCustomvar::class);
$relations->belongsToMany('timeperiod', Timeperiod::class)
->through(TimeperiodCustomvar::class);
$relations->belongsToMany('user', User::class)
->through(UserCustomvar::class);
$relations->belongsToMany('usergroup', Usergroup::class)
->through(UsergroupCustomvar::class);
$relations->hasMany('customvar_flat', CustomvarFlat::class);
}
}
|