]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/style.php
Move Config::get() to DI::config()->get()
[friendica.git] / view / theme / duepuntozero / style.php
index 5d841f1084b85af746d6ef90f655878e6aa223b5..a3edf813cb1cd063617ae4d362bcabe94dc891c2 100644 (file)
@@ -3,22 +3,23 @@
  * @file view/theme/duepuntozero/style.php
  */
 use Friendica\Core\Config;
-use Friendica\Core\PConfig;
-use Friendica\Model\Profile;
+use Friendica\DI;
 
 if (file_exists("$THEMEPATH/style.css")) {
        echo file_get_contents("$THEMEPATH/style.css");
 }
 
-$uid = Profile::getThemeUid();
+$uid = $_REQUEST['puid'] ?? 0;
 
-$s_colorset = Config::get('duepuntozero', 'colorset');
-$colorset = PConfig::get($uid, 'duepuntozero', 'colorset');
+$s_colorset = DI::config()->get('duepuntozero', 'colorset');
+$colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset');
 
-if (!x($colorset)) {
+if (empty($colorset)) {
        $colorset = $s_colorset;
 }
 
+$setcss = '';
+
 if ($colorset) {
        if ($colorset == 'greenzero') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
@@ -27,7 +28,7 @@ if ($colorset) {
        if ($colorset == 'purplezero') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/purplezero.css');
        }
-       
+
        if ($colorset == 'easterbunny') {
                $setcss = file_get_contents('view/theme/duepuntozero/deriv/easterbunny.css');
        }