summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-06-21 21:21:46 +0200
committerLukas Reschke <lukas@owncloud.com>2016-06-27 10:26:23 +0200
commit27b699bdbcd080ec9d5400a2391cdb2b725f7ee1 (patch)
tree0cd0e124cb6e7ea4b6dfdf1958df4eafae48d240 /lib/private/legacy
parentcc321bc140f707257ffe1a11b4fa0238887e16fc (diff)
downloadnextcloud-server-27b699bdbcd080ec9d5400a2391cdb2b725f7ee1.tar.gz
nextcloud-server-27b699bdbcd080ec9d5400a2391cdb2b725f7ee1.zip
Migrate logic to dynamic controller
Also adds support for having custom login backgrounds
Diffstat (limited to 'lib/private/legacy')
-rw-r--r--lib/private/legacy/defaults.php37
-rw-r--r--lib/private/legacy/template.php2
2 files changed, 5 insertions, 34 deletions
diff --git a/lib/private/legacy/defaults.php b/lib/private/legacy/defaults.php
index f0cc4c91851..2a97cfe89ed 100644
--- a/lib/private/legacy/defaults.php
+++ b/lib/private/legacy/defaults.php
@@ -31,13 +31,8 @@
class OC_Defaults {
private $theme;
-
- /** @var \OCP\IL10N */
private $l;
- /** @var \OCA\Theming\Template */
- private $template;
-
private $defaultEntity;
private $defaultName;
private $defaultTitle;
@@ -54,45 +49,21 @@ class OC_Defaults {
function __construct() {
$this->l = \OC::$server->getL10N('lib');
- $config = \OC::$server->getConfig();
-
-
- try {
- $themingAppEnabled = $config->getSystemValue('installed', false) && \OCP\App::isEnabled('theming');
- } catch (\Exception $e) {
- $themingAppEnabled = false;
- }
-
- $config = \OC::$server->getConfig();
-
- if ($themingAppEnabled) {
- $this->template = new \OCA\Theming\Template(
- $config,
- $this->l,
- \OC::$server->getURLGenerator(),
- new \OCA\Theming\Init($config, \OC::$server->getLogger())
- );
- $this->defaultName = $this->template->getName(); /* short name, used when referring to the software */
- $this->defaultBaseUrl = $this->template->getUrl();
- $this->defaultSlogan = $this->template->getSlogan();
- $this->defaultMailHeaderColor = $this->template->getColor(); /* header color of mail notifications */
- } else {
- $this->defaultName = 'Nextcloud';
- $this->defaultBaseUrl = 'https://nextcloud.com';
- $this->defaultSlogan = $this->l->t('a safe home for all your data');
- $this->defaultMailHeaderColor = '#0082c9'; /* header color of mail notifications */
- }
$version = \OCP\Util::getVersion();
$this->defaultEntity = 'Nextcloud'; /* e.g. company name, used for footers and copyright notices */
+ $this->defaultName = 'Nextcloud'; /* short name, used when referring to the software */
$this->defaultTitle = 'Nextcloud'; /* can be a longer name, for titles */
+ $this->defaultBaseUrl = 'https://nextcloud.com';
$this->defaultSyncClientUrl = 'https://nextcloud.com/install';
$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 = 'https://doc.owncloud.org';
$this->defaultDocVersion = $version[0] . '.' . $version[1]; // used to generate doc links
+ $this->defaultSlogan = $this->l->t('a safe home for all your data');
$this->defaultLogoClaim = '';
+ $this->defaultMailHeaderColor = '#0082c9'; /* header color of mail notifications */
$themePath = OC::$SERVERROOT . '/themes/' . OC_Util::getTheme() . '/defaults.php';
if (file_exists($themePath)) {
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php
index 5023e3a60c8..e2956508090 100644
--- a/lib/private/legacy/template.php
+++ b/lib/private/legacy/template.php
@@ -80,7 +80,7 @@ class OC_Template extends \OC\Template\Base {
$parts = explode('/', $app); // fix translation when app is something like core/lostpassword
$l10n = \OC::$server->getL10N($parts[0]);
- $themeDefaults = new OC_Defaults();
+ $themeDefaults = \OC::$server->getThemingDefaults();
list($path, $template) = $this->findTemplate($theme, $app, $name);