diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-11-24 16:24:26 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-11-25 11:53:28 +0100 |
commit | c503ecd54495167f97b6602e5b41c1cf95467395 (patch) | |
tree | f0d8dfa42dda7c4d8c2e5e64d8ec19204c7fc24e /lib/public/iurlgenerator.php | |
parent | 6fb2477fb75d4c982a1568e2392d17fd7cc2fd4b (diff) | |
download | nextcloud-server-c503ecd54495167f97b6602e5b41c1cf95467395.tar.gz nextcloud-server-c503ecd54495167f97b6602e5b41c1cf95467395.zip |
Introduce app info xml parser including basic unit test - necessary for #10777
Diffstat (limited to 'lib/public/iurlgenerator.php')
-rw-r--r-- | lib/public/iurlgenerator.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/public/iurlgenerator.php b/lib/public/iurlgenerator.php index dbbd8a3bb63..fa817c10ea5 100644 --- a/lib/public/iurlgenerator.php +++ b/lib/public/iurlgenerator.php @@ -69,8 +69,14 @@ interface IURLGenerator { /** * Makes an URL absolute - * @param string $url the url in the owncloud host + * @param string $url the url in the ownCloud host * @return string the absolute version of the url */ public function getAbsoluteURL($url); + + /** + * @param string $key + * @return string url to the online documentation + */ + public function linkToDocs($key); } |