summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/group_ldap.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/group_ldap.php')
-rw-r--r--apps/user_ldap/group_ldap.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php
index a55c9064864..b9d00fc78af 100644
--- a/apps/user_ldap/group_ldap.php
+++ b/apps/user_ldap/group_ldap.php
@@ -40,6 +40,7 @@
* Checks whether the user is member of a group or not.
*/
public function inGroup($uid, $gid) {
+ return array();
}
/**
@@ -51,6 +52,7 @@
* if the user exists at all.
*/
public function getUserGroups($uid) {
+ return array();
}
/**
@@ -58,6 +60,7 @@
* @returns array with user ids
*/
public function getUsersInGroup($gid) {
+ return array();
}
/**