summaryrefslogtreecommitdiffstats
path: root/lib/public/defaults.php
diff options
context:
space:
mode:
authorscolebrook <scolebrook@mac.com>2014-07-08 09:51:05 -0400
committerMorris Jobke <hey@morrisjobke.de>2014-08-05 13:16:51 +0200
commit2e127d2c5ea82089f74a5a33549cd42db9d1bb5e (patch)
tree9dfb82374f1934e7aa2c9c0875edfd477243889e /lib/public/defaults.php
parent7fd770654246e5ca481df65b9f00ef448ac280f0 (diff)
downloadnextcloud-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.php16
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
*/