]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/duepuntozero/style.php
Register Friendica stylesheet using App->registerStylesheet()
[friendica.git] / view / theme / duepuntozero / style.php
index 1095dfcc5d83ab1a57d17d9e3d32bedc048c539c..ff55f462f12649aeba346213302230ede911f751 100644 (file)
@@ -1,27 +1,50 @@
 <?php
-if (file_exists("$THEMEPATH/style.css")){
-    echo file_get_contents("$THEMEPATH/style.css");
+/**
+ * @file view/theme/duepuntozero/style.php
+ */
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
+use Friendica\Model\Profile;
+
+if (file_exists("$THEMEPATH/style.css")) {
+       echo file_get_contents("$THEMEPATH/style.css");
+}
+
+$uid = Profile::getThemeUid();
+
+$s_colorset = Config::get('duepuntozero', 'colorset');
+$colorset = PConfig::get($uid, 'duepuntozero', 'colorset');
+
+if (!x($colorset)) {
+       $colorset = $s_colorset;
 }
-$uid = get_theme_uid();
 
-$s_colorset = get_config('duepuntozero','colorset');
-$colorset = get_pconfig( $uid, 'duepuntozero', 'colorset');
-if (!x($colorset))
-    $colorset = $s_colorset;
+$setcss = '';
 
 if ($colorset) {
-    if ($colorset == 'greenzero')
-       $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
-    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');
-    if ($colorset == 'darkzero')
-       $setcss = file_get_contents('view/theme/duepuntozero/deriv/darkzero.css');
-    if ($colorset == 'comix')
-       $setcss = file_get_contents('view/theme/duepuntozero/deriv/comix.css');
-    if ($colorset == 'slackr')
-       $setcss = file_get_contents('view/theme/duepuntozero/deriv/slackr.css');
+       if ($colorset == 'greenzero') {
+               $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
+       }
+
+       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');
+       }
+
+       if ($colorset == 'darkzero') {
+               $setcss = file_get_contents('view/theme/duepuntozero/deriv/darkzero.css');
+       }
+
+       if ($colorset == 'comix') {
+               $setcss = file_get_contents('view/theme/duepuntozero/deriv/comix.css');
+       }
+
+       if ($colorset == 'slackr') {
+               $setcss = file_get_contents('view/theme/duepuntozero/deriv/slackr.css');
+       }
 }
 
 echo $setcss;