summaryrefslogtreecommitdiffstats
path: root/apps/theming/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2017-05-23 15:20:54 +0200
committerJulius Härtl <jus@bitgrid.net>2017-07-12 11:42:15 +0200
commitce5ad7e7f48751b25ef9dd377fbbface2adb30b4 (patch)
tree7a9b951dd6458071ac8db0fa016d7c8fe5a6a348 /apps/theming/lib
parentd23bc9a99a6aa59aac9a0635ebbb7fa95fcba05a (diff)
downloadnextcloud-server-ce5ad7e7f48751b25ef9dd377fbbface2adb30b4.tar.gz
nextcloud-server-ce5ad7e7f48751b25ef9dd377fbbface2adb30b4.zip
Prefer custom theme over theming app
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r--apps/theming/lib/Util.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php
index 286756a4849..1df16ea4976 100644
--- a/apps/theming/lib/Util.php
+++ b/apps/theming/lib/Util.php
@@ -199,4 +199,17 @@ class Util {
return $svg;
}
+ /**
+ * Check if a custom theme is set in the server configuration
+ *
+ * @return bool
+ */
+ public function isAlreadyThemed() {
+ $theme = $this->config->getSystemValue('theme', '');
+ if ($theme !== '') {
+ return true;
+ }
+ return false;
+ }
+
}