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
|
@ -62,6 +62,19 @@ interface IServerContainer {
|
||||||
*/
|
*/
|
||||||
function getRootFolder();
|
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
|
* Returns the user session
|
||||||
*
|
*
|
||||||
|
|
|
@ -211,6 +211,7 @@ class Server extends SimpleContainer implements IServerContainer {
|
||||||
function getConfig() {
|
function getConfig() {
|
||||||
return $this->query('AllConfig');
|
return $this->query('AllConfig');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an ICache instance
|
* Returns an ICache instance
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue