summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2014-08-05 17:53:18 +0200
committerBjörn Schießle <schiessle@owncloud.com>2014-08-05 17:53:18 +0200
commitd35bfc9a4c2e98305ed2317e009de38bf009cc38 (patch)
tree515d7028887399bd35930c33ce468e052e31b67a /lib/public
parent54030f4eefa751478b64b277614c0db89435f18f (diff)
parent8561d0dfca8fdb3826f6a301ee9c617bb11821fc (diff)
downloadnextcloud-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.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
*/