blob: d51f9e6ad94e7454a1f7065f75d04e8556e9beab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Icinga\Module\Director\Objects;
class IcingaNotificationField extends IcingaObjectField
{
protected $keyName = array('notification_id', 'datafield_id');
protected $table = 'icinga_notification_field';
protected $defaultProperties = array(
'notification_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
);
}
|