]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/quattro/style.php
Merge pull request #13758 from Raroun/frio_More_space_between_photo_permissions_and_s...
[friendica.git] / view / theme / quattro / style.php
index 27718da6d2a9a0d79f9aeb7c53165531e86b3403..4f73001ab354fade4aab8d75da10ea46cc2c5530 100644 (file)
@@ -1,27 +1,47 @@
 <?php
 /**
- * @file view/theme/quattro/style.php
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
-use Friendica\DI;
 
-$uid = $_REQUEST['puid'] ?? 0;
+use Friendica\DI;
 
-$color = false;
+/*
+ * This script can be included when the maintenance mode is on, which requires us to avoid any config call and
+ * use the following hardcoded defaults
+ */
+$color = 'dark';
 $quattro_align = false;
-$site_color = DI::config()->get("quattro", "color", "dark");
-$site_quattro_align = DI::config()->get("quattro", "align", false);
+$textarea_font_size = '20';
+$post_font_size = '12';
 
-if ($uid) {
-       $color = DI::pConfig()->get($uid, "quattro", "color", false);
-       $quattro_align = DI::pConfig()->get($uid, 'quattro', 'align', false);
-}
+if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) {
+       $site_color = DI::config()->get("quattro", "color", $color);
+       $site_quattro_align = DI::config()->get("quattro", "align", $quattro_align);
+       $site_textarea_font_size = DI::config()->get("quattro", "tfs", $textarea_font_size);
+       $site_post_font_size = DI::config()->get("quattro", "pfs", $post_font_size);
 
-if ($color === false) {
-       $color = $site_color;
-}
+       $uid = $_REQUEST['puid'] ?? 0;
 
-if ($quattro_align === false) {
-       $quattro_align = $site_quattro_align;
+       $color = DI::pConfig()->get($uid, "quattro", "color", $site_color);
+       $quattro_align = DI::pConfig()->get($uid, 'quattro', 'align', $site_quattro_align);
+       $textarea_font_size = DI::pConfig()->get($uid, "quattro", "tfs", $site_textarea_font_size);
+       $post_font_size = DI::pConfig()->get($uid, "quattro", "pfs", $site_post_font_size);
 }
 
 $color = \Friendica\Util\Strings::sanitizeFilePathItem($color);
@@ -42,24 +62,6 @@ if ($quattro_align == "center") {
 }
 
 
-$textarea_font_size = false;
-$post_font_size = false;
-
-$site_textarea_font_size = DI::config()->get("quattro", "tfs", "20");
-$site_post_font_size = DI::config()->get("quattro", "pfs", "12");
-
-if ($uid) {
-       $textarea_font_size = DI::pConfig()->get($uid, "quattro", "tfs", false);
-       $post_font_size = DI::pConfig()->get($uid, "quattro", "pfs", false);
-}
-
-if ($textarea_font_size === false) {
-       $textarea_font_size = $site_textarea_font_size;
-}
-if ($post_font_size === false) {
-       $post_font_size = $site_post_font_size;
-}
-
 echo "
        textarea { font-size: ${textarea_font_size}px; }
        .wall-item-comment-wrapper .comment-edit-text-full { font-size: ${textarea_font_size}px; }