diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-08-05 17:53:18 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-08-05 17:53:18 +0200 |
commit | d35bfc9a4c2e98305ed2317e009de38bf009cc38 (patch) | |
tree | 515d7028887399bd35930c33ce468e052e31b67a /lib/public | |
parent | 54030f4eefa751478b64b277614c0db89435f18f (diff) | |
parent | 8561d0dfca8fdb3826f6a301ee9c617bb11821fc (diff) | |
download | nextcloud-server-d35bfc9a4c2e98305ed2317e009de38bf009cc38.tar.gz nextcloud-server-d35bfc9a4c2e98305ed2317e009de38bf009cc38.zip |
Merge pull request #9520 from owncloud/theme_urls
Add ability to theme iOS and Android client URLs just like desktop URLs.
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/defaults.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/public/defaults.php b/lib/public/defaults.php index 34b68903ee8..9af31245ff4 100644 --- a/lib/public/defaults.php +++ b/lib/public/defaults.php @@ -66,6 +66,22 @@ class Defaults { } /** + * link to the iOS client + * @return string + */ + public function getiOSClientUrl() { + return $this->defaults->getiOSClientUrl(); + } + + /** + * link to the Android client + * @return string + */ + public function getAndroidClientUrl() { + return $this->defaults->getAndroidClientUrl(); + } + + /** * base URL to the documentation of your ownCloud instance * @return string */ |