summaryrefslogtreecommitdiffstats
path: root/lib/group/backend.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-06-05 14:02:00 +0200
committerArthur Schiwon <blizzz@owncloud.com>2012-06-05 14:02:13 +0200
commit7621559d00efa5d55ec6543e50a4b0ae39d8c7df (patch)
tree91397ba12e44c5d3e74a47d05414bbb688fafe3e /lib/group/backend.php
parent80fc01388a76344082ad7a63df17b5c42c8731c8 (diff)
downloadnextcloud-server-7621559d00efa5d55ec6543e50a4b0ae39d8c7df.tar.gz
nextcloud-server-7621559d00efa5d55ec6543e50a4b0ae39d8c7df.zip
make groups not static, fixes oc-919
Diffstat (limited to 'lib/group/backend.php')
-rw-r--r--lib/group/backend.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/group/backend.php b/lib/group/backend.php
index 1b0b663f2ed..24778afd1e5 100644
--- a/lib/group/backend.php
+++ b/lib/group/backend.php
@@ -44,7 +44,7 @@ abstract class OC_Group_Backend {
OC_GROUP_BACKEND_ADD_TO_GROUP => 'addToGroup',
OC_GROUP_BACKEND_REMOVE_FROM_GOUP => 'removeFromGroup',
);
-
+
/**
* @brief Get all supported actions
* @returns bitwise-or'ed actions
@@ -62,7 +62,7 @@ abstract class OC_Group_Backend {
return $actions;
}
-
+
/**
* @brief Check if backend implements actions
* @param $actions bitwise-or'ed actions
@@ -83,7 +83,7 @@ abstract class OC_Group_Backend {
*
* Checks whether the user is member of a group or not.
*/
- public static function inGroup($uid, $gid){
+ public function inGroup($uid, $gid){
return in_array($gid, $this->getUserGroups($uid));
}
@@ -95,7 +95,7 @@ abstract class OC_Group_Backend {
* This function fetches all groups a user belongs to. It does not check
* if the user exists at all.
*/
- public static function getUserGroups($uid){
+ public function getUserGroups($uid){
return array();
}
@@ -105,7 +105,7 @@ abstract class OC_Group_Backend {
*
* Returns a list with all groups
*/
- public static function getGroups(){
+ public function getGroups(){
return array();
}
@@ -122,7 +122,7 @@ abstract class OC_Group_Backend {
* @brief get a list of all users in a group
* @returns array with user ids
*/
- public static function usersInGroup($gid){
+ public function usersInGroup($gid){
return array();
}