mirror of
https://github.com/nextcloud/server.git
synced 2025-01-15 23:59:16 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
21 lines
460 B
PHP
21 lines
460 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OC\Command;
|
|
|
|
use OCP\IUser;
|
|
|
|
trait FileAccess {
|
|
protected function setupFS(IUser $user) {
|
|
\OC_Util::setupFS($user->getUID());
|
|
}
|
|
|
|
protected function getUserFolder(IUser $user) {
|
|
$this->setupFS($user);
|
|
return \OC::$server->getUserFolder($user->getUID());
|
|
}
|
|
}
|