]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/quattro/style.php
Merge pull request #11260 from mkljczk/develop
[friendica.git] / view / theme / quattro / style.php
index 1c0209fdf8ead625cbc17fceb42f3faf891cd5eb..112eafe0d4487be567f5dd8c3a52fc2f2548cf52 100644 (file)
@@ -1,18 +1,32 @@
 <?php
 /**
- * @file view/theme/quattro/style.php
+ * @copyright Copyright (C) 2010-2022, 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\Core\Config;
-use Friendica\Core\PConfig;
+
 use Friendica\DI;
-use Friendica\Model\Profile;
 
 $uid = $_REQUEST['puid'] ?? 0;
 
 $color = false;
 $quattro_align = false;
-$site_color = Config::get("quattro", "color", "dark");
-$site_quattro_align = Config::get("quattro", "align", false);
+$site_color = DI::config()->get("quattro", "color", "dark");
+$site_quattro_align = DI::config()->get("quattro", "align", false);
 
 if ($uid) {
        $color = DI::pConfig()->get($uid, "quattro", "color", false);
@@ -48,8 +62,8 @@ if ($quattro_align == "center") {
 $textarea_font_size = false;
 $post_font_size = false;
 
-$site_textarea_font_size = Config::get("quattro", "tfs", "20");
-$site_post_font_size = Config::get("quattro", "pfs", "12");
+$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);