diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-07 11:41:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-07 11:41:28 +0200 |
commit | c3286402a846bf874ae78a61880442f8ebfd7ba9 (patch) | |
tree | 0b822575d7db86be1f51bb06b69d7de776a94630 /lib/public/appframework | |
parent | 39be4dca67ea26aa7602aa8a1b6e556acb67af51 (diff) | |
download | nextcloud-server-c3286402a846bf874ae78a61880442f8ebfd7ba9.tar.gz nextcloud-server-c3286402a846bf874ae78a61880442f8ebfd7ba9.zip |
removing log(), getTemplate(), getLocalFilePath(), getUrlContent(), getFileInfo()
Diffstat (limited to 'lib/public/appframework')
-rw-r--r-- | lib/public/appframework/iapi.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/public/appframework/iapi.php b/lib/public/appframework/iapi.php index c8722af6240..3bde4c9d4e7 100644 --- a/lib/public/appframework/iapi.php +++ b/lib/public/appframework/iapi.php @@ -75,24 +75,4 @@ interface IApi { */ public function isAppEnabled($appName); - - /** - * Writes a function into the error log - * @param string $msg the error message to be logged - * @param int $level the error level - * - * FIXME: add logger instance to ServerContainer - */ - function log($msg, $level = null); - - - /** - * Returns a template - * @param string $templateName the name of the template - * @param string $renderAs how it should be rendered - * @param string $appName the name of the app - * @return \OCP\Template a new template - */ - function getTemplate($templateName, $renderAs='user', $appName=null); - } |