mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Merge branch 'server_folder_methods' of github.com:owncloud/core into server_folder_methods
Conflicts: lib/public/iservercontainer.php lib/server.php
This commit is contained in:
commit
698394c994
2 changed files with 14 additions and 0 deletions
|
|
@ -62,6 +62,19 @@ interface IServerContainer {
|
|||
*/
|
||||
function getRootFolder();
|
||||
|
||||
/**
|
||||
* Returns a view to ownCloud's files folder
|
||||
*
|
||||
* @return \OCP\Files\Folder
|
||||
*/
|
||||
function getUserFolder();
|
||||
|
||||
/**
|
||||
* Returns an app-specific view in ownClouds data directory
|
||||
*
|
||||
* @return \OCP\Files\Folder
|
||||
*/
|
||||
function getAppFolder();
|
||||
/**
|
||||
* Returns the user session
|
||||
*
|
||||
|
|
|
|||
|
|
@ -211,6 +211,7 @@ class Server extends SimpleContainer implements IServerContainer {
|
|||
function getConfig() {
|
||||
return $this->query('AllConfig');
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an ICache instance
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue