summaryrefslogtreecommitdiffstats
path: root/lib/private/defaults.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-09-03 16:26:20 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-09-03 16:26:20 +0200
commit954925eaa0cb837530ebe05b58d7b56341bd53b5 (patch)
treee09c509a0d322b3ebdefac5a32f1a8b47014a32a /lib/private/defaults.php
parent373d1c5e9f4c85e86a0ac1b53b3e54a0d9cdf06e (diff)
parent73f50287ff0965c1be6a520c92c9f0d297ec5685 (diff)
downloadnextcloud-server-954925eaa0cb837530ebe05b58d7b56341bd53b5.tar.gz
nextcloud-server-954925eaa0cb837530ebe05b58d7b56341bd53b5.zip
Merge pull request #10667 from pmjdebruijn/itunes-appid
defaults: add customizable defaultiTunesAppId
Diffstat (limited to 'lib/private/defaults.php')
-rw-r--r--lib/private/defaults.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/private/defaults.php b/lib/private/defaults.php
index 3996cc081ed..cc6c819f03f 100644
--- a/lib/private/defaults.php
+++ b/lib/private/defaults.php
@@ -19,6 +19,7 @@ class OC_Defaults {
private $defaultBaseUrl;
private $defaultSyncClientUrl;
private $defaultiOSClientUrl;
+ private $defaultiTunesAppId;
private $defaultAndroidClientUrl;
private $defaultDocBaseUrl;
private $defaultDocVersion;
@@ -36,6 +37,7 @@ class OC_Defaults {
$this->defaultBaseUrl = 'https://owncloud.org';
$this->defaultSyncClientUrl = 'https://owncloud.org/sync-clients/';
$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
+ $this->defaultiTunesAppId = '543672169';
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
$this->defaultDocBaseUrl = 'http://doc.owncloud.org';
$this->defaultDocVersion = $version[0] . '.0'; // used to generate doc links
@@ -95,6 +97,18 @@ class OC_Defaults {
}
/**
+ * Returns the AppId for the App Store for the iOS Client
+ * @return string AppId
+ */
+ public function getiTunesAppId() {
+ if ($this->themeExist('getiTunesAppId')) {
+ return $this->theme->getiTunesAppId();
+ } else {
+ return $this->defaultiTunesAppId;
+ }
+ }
+
+ /**
* Returns the URL to Google Play for the Android Client
* @return string URL
*/