Add IcingaUserGroupMember Object
This commit is contained in:
parent
00a4bc39f4
commit
49f7afc2ff
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
namespace Icinga\Module\Director\Objects;
|
||||
|
||||
class IcingaUserGroupMember extends IcingaObject
|
||||
{
|
||||
protected $keyName = array('user_id', 'usergroup_id');
|
||||
|
||||
protected $table = 'icinga_usergroup_user';
|
||||
|
||||
protected $defaultProperties = array(
|
||||
'usergroup_id' => null,
|
||||
'user_id' => null,
|
||||
);
|
||||
|
||||
public function onInsert()
|
||||
{
|
||||
}
|
||||
|
||||
public function onUpdate()
|
||||
{
|
||||
}
|
||||
|
||||
public function onDelete()
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue