diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-11-12 17:39:25 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-11-12 17:39:25 +0100 |
commit | 4302a78b27389cb8f4cdb61cc1f4167e4ecd522a (patch) | |
tree | ca8e73481088429f853c3e33ee272bcb55d11026 /lib/private/appframework | |
parent | d5796bbaf9fdcd21ed7de6489972ef0993993ccf (diff) | |
download | nextcloud-server-4302a78b27389cb8f4cdb61cc1f4167e4ecd522a.tar.gz nextcloud-server-4302a78b27389cb8f4cdb61cc1f4167e4ecd522a.zip |
Deprecate older API wrappers and calls
Those old classes have now non-static pendants and can be deprecated IMHO.
Diffstat (limited to 'lib/private/appframework')
-rw-r--r-- | lib/private/appframework/core/api.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/appframework/core/api.php b/lib/private/appframework/core/api.php index 279f4bf97f7..f68c677d106 100644 --- a/lib/private/appframework/core/api.php +++ b/lib/private/appframework/core/api.php @@ -49,6 +49,7 @@ class API implements IApi{ /** * Gets the userid of the current user * @return string the user id of the current user + * @deprecated Use \OC::$server->getUserSession()->getUser()->getUID() */ public function getUserId(){ return \OCP\User::getUser(); @@ -112,6 +113,7 @@ class API implements IApi{ /** * used to return and open a new event source * @return \OCP\IEventSource a new open EventSource class + * @deprecated Use \OC::$server->createEventSource(); */ public function openEventSource(){ return \OC::$server->createEventSource(); @@ -159,6 +161,7 @@ class API implements IApi{ * @param string $className full namespace and class name of the class * @param string $methodName the name of the static method that should be * called + * @deprecated Use \OC::$server->getJobList()->add(); */ public function addRegularTask($className, $methodName) { \OCP\Backgroundjob::addRegularTask($className, $methodName); |