diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-25 20:33:24 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-25 20:33:24 +0200 |
commit | 6c8caa1641732c57fe59483fc2cdd5bcd7bd0163 (patch) | |
tree | 57c69a5be00c4ae2c43bf2ce4094c3f700e1f285 /lib/private | |
parent | 89ebb8a6631eaa273d34864224986e4efb2c365d (diff) | |
download | nextcloud-server-6c8caa1641732c57fe59483fc2cdd5bcd7bd0163.tar.gz nextcloud-server-6c8caa1641732c57fe59483fc2cdd5bcd7bd0163.zip |
Remove deprecated \OCP\User::getUsers
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Encryption/Util.php | 7 | ||||
-rw-r--r-- | lib/private/legacy/user.php | 19 |
2 files changed, 5 insertions, 21 deletions
diff --git a/lib/private/Encryption/Util.php b/lib/private/Encryption/Util.php index fc0adbbd47b..1f5a511c39b 100644 --- a/lib/private/Encryption/Util.php +++ b/lib/private/Encryption/Util.php @@ -271,9 +271,12 @@ class Util { } public function getUserWithAccessToMountPoint($users, $groups) { - $result = array(); + $result = []; if (in_array('all', $users)) { - $result = \OCP\User::getUsers(); + $users = $this->userManager->search('', null, null); + foreach ($users as $user) { + $result[] = $user->getUID(); + } } else { $result = array_merge($result, $users); diff --git a/lib/private/legacy/user.php b/lib/private/legacy/user.php index 8f342281adb..07aa5a92f9a 100644 --- a/lib/private/legacy/user.php +++ b/lib/private/legacy/user.php @@ -367,25 +367,6 @@ class OC_User { } /** - * Get a list of all users - * - * @return array an array of all uids - * - * Get a list of all users. - * @param string $search - * @param integer $limit - * @param integer $offset - */ - public static function getUsers($search = '', $limit = null, $offset = null) { - $users = \OC::$server->getUserManager()->search($search, $limit, $offset); - $uids = array(); - foreach ($users as $user) { - $uids[] = $user->getUID(); - } - return $uids; - } - - /** * Get a list of all users display name * * @param string $search |