diff options
author | scolebrook <scolebrook@mac.com> | 2014-07-08 09:51:05 -0400 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 13:16:51 +0200 |
commit | 2e127d2c5ea82089f74a5a33549cd42db9d1bb5e (patch) | |
tree | 9dfb82374f1934e7aa2c9c0875edfd477243889e /lib/public/defaults.php | |
parent | 7fd770654246e5ca481df65b9f00ef448ac280f0 (diff) | |
download | nextcloud-server-2e127d2c5ea82089f74a5a33549cd42db9d1bb5e.tar.gz nextcloud-server-2e127d2c5ea82089f74a5a33549cd42db9d1bb5e.zip |
Add ability to theme iOS and Android client URLs just like desktop URLs.
Diffstat (limited to 'lib/public/defaults.php')
-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 */ |