Samba 4 group support
This commit is contained in:
parent
e8760a2794
commit
d7454ab251
|
@ -3,7 +3,7 @@
|
||||||
$Id$
|
$Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2005 - 2012 Roland Gruber
|
Copyright (C) 2005 - 2013 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -112,6 +112,9 @@ class group extends baseType {
|
||||||
elseif ($container->getAccountModule('rfc2307bisPosixGroup') != null) {
|
elseif ($container->getAccountModule('rfc2307bisPosixGroup') != null) {
|
||||||
$attributes = $container->getAccountModule('rfc2307bisPosixGroup')->getAttributes();
|
$attributes = $container->getAccountModule('rfc2307bisPosixGroup')->getAttributes();
|
||||||
}
|
}
|
||||||
|
elseif ($container->getAccountModule('windowsGroup') != null) {
|
||||||
|
$attributes = $container->getAccountModule('windowsGroup')->getAttributes();
|
||||||
|
}
|
||||||
$gonAttributes = null;
|
$gonAttributes = null;
|
||||||
if ($container->getAccountModule('groupOfNames') != null) {
|
if ($container->getAccountModule('groupOfNames') != null) {
|
||||||
$gonAttributes = $container->getAccountModule('groupOfNames')->getAttributes();
|
$gonAttributes = $container->getAccountModule('groupOfNames')->getAttributes();
|
||||||
|
@ -153,6 +156,9 @@ class group extends baseType {
|
||||||
elseif ($container->getAccountModule('rfc2307bisPosixGroup') != null) {
|
elseif ($container->getAccountModule('rfc2307bisPosixGroup') != null) {
|
||||||
$attributes = $container->getAccountModule('rfc2307bisPosixGroup')->getAttributes();
|
$attributes = $container->getAccountModule('rfc2307bisPosixGroup')->getAttributes();
|
||||||
}
|
}
|
||||||
|
elseif ($container->getAccountModule('windowsGroup') != null) {
|
||||||
|
$attributes = $container->getAccountModule('windowsGroup')->getAttributes();
|
||||||
|
}
|
||||||
$gonAttributes = null;
|
$gonAttributes = null;
|
||||||
if ($container->getAccountModule('groupOfNames') != null) {
|
if ($container->getAccountModule('groupOfNames') != null) {
|
||||||
$gonAttributes = $container->getAccountModule('groupOfNames')->getAttributes();
|
$gonAttributes = $container->getAccountModule('groupOfNames')->getAttributes();
|
||||||
|
|
Loading…
Reference in New Issue