private $color;
/** @var Util */
private $util;
+ /** @var string */
+ private $iTunesAppId;
+ /** @var string */
+ private $iOSClientUrl;
/**
* ThemingDefaults constructor.
$this->url = parent::getBaseUrl();
$this->slogan = parent::getSlogan();
$this->color = parent::getColorPrimary();
+ $this->iTunesAppId = parent::getiTunesAppId();
+ $this->iOSClientUrl = parent::getiOSClientUrl();
}
public function getName() {
return $this->urlGenerator->linkToRoute('theming.Theming.getLoginBackground') . '?v=' . $cacheBusterCounter;
}
+ /**
+ * @return string
+ */
+ public function getiTunesAppId() {
+ return $this->config->getAppValue('theming', 'iTunesAppId', $this->iTunesAppId);
+ }
+
+ /**
+ * @return string
+ */
+ public function getiOSClientUrl() {
+ return $this->config->getAppValue('theming', 'iOSClientUrl', $this->iOSClientUrl);
+ }
+
/**
* @return array scss variables to overwrite
return $returnValue;
}
-
}