diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-17 11:28:01 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-17 11:28:01 +0100 |
commit | 77c4c2856aa4cb27ca6ab77e5bedbaa65300d111 (patch) | |
tree | 92262ae01c9215983cfa27ad3e70d221c98e3ad6 /lib/public/appframework/iappcontainer.php | |
parent | 6d80524e67c2f9bfe23fe37d650fe5ef20d03f53 (diff) | |
parent | d59c4e832fea87d03d199a3211186a47fd252c32 (diff) | |
download | nextcloud-server-77c4c2856aa4cb27ca6ab77e5bedbaa65300d111.tar.gz nextcloud-server-77c4c2856aa4cb27ca6ab77e5bedbaa65300d111.zip |
Merge pull request #12889 from owncloud/deprecation-time
Deprecate old and replaced appframework apis
Diffstat (limited to 'lib/public/appframework/iappcontainer.php')
-rw-r--r-- | lib/public/appframework/iappcontainer.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/public/appframework/iappcontainer.php b/lib/public/appframework/iappcontainer.php index a0b0c06881a..3621d69a542 100644 --- a/lib/public/appframework/iappcontainer.php +++ b/lib/public/appframework/iappcontainer.php @@ -40,6 +40,7 @@ interface IAppContainer extends IContainer{ function getAppName(); /** + * @deprecated implements only deprecated methods * @return IApi */ function getCoreApi(); @@ -62,10 +63,13 @@ interface IAppContainer extends IContainer{ /** * @return boolean + * @deprecated use the groupmanager instead to find out if the user is in + * the admin group */ function isAdminUser(); /** + * @deprecated use the ILogger instead * @param string $message * @param string $level * @return mixed |