diff options
Diffstat (limited to 'apps/user_ldap/lib/ILDAPGroupPlugin.php')
-rw-r--r-- | apps/user_ldap/lib/ILDAPGroupPlugin.php | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/apps/user_ldap/lib/ILDAPGroupPlugin.php b/apps/user_ldap/lib/ILDAPGroupPlugin.php index 468424a560d..8afc4c86480 100644 --- a/apps/user_ldap/lib/ILDAPGroupPlugin.php +++ b/apps/user_ldap/lib/ILDAPGroupPlugin.php @@ -39,14 +39,14 @@ interface ILDAPGroupPlugin { * @param string $gid * @return string|null The group DN if group creation was successful. */ - public function createGroup($gid); + public function createGroup($gid); /** * delete a group * @param string $gid gid of the group to delete * @return bool */ - public function deleteGroup($gid); + public function deleteGroup($gid); /** * Add a user to a group @@ -56,7 +56,7 @@ interface ILDAPGroupPlugin { * * Adds a user to a group. */ - public function addToGroup($uid, $gid); + public function addToGroup($uid, $gid); /** * Removes a user from a group @@ -66,7 +66,7 @@ interface ILDAPGroupPlugin { * * removes the user from a group. */ - public function removeFromGroup($uid, $gid); + public function removeFromGroup($uid, $gid); /** * get the number of all users matching the search string in a group @@ -74,15 +74,13 @@ interface ILDAPGroupPlugin { * @param string $search * @return int|false */ - public function countUsersInGroup($gid, $search = ''); + public function countUsersInGroup($gid, $search = ''); /** * get an array with group details * @param string $gid * @return array|false */ - public function getGroupDetails($gid); - - + public function getGroupDetails($gid); } |