X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Fstyle.php;h=a3edf813cb1cd063617ae4d362bcabe94dc891c2;hb=6c36fd9e01510a14fea9de766b4afe6760912a2e;hp=d5f8696a793b525586d731fd1789a5122e37d66b;hpb=f0aaafa7aa56f6145b66b4663c0c38455f9765ce;p=friendica.git diff --git a/view/theme/duepuntozero/style.php b/view/theme/duepuntozero/style.php index d5f8696a79..a3edf813cb 100644 --- a/view/theme/duepuntozero/style.php +++ b/view/theme/duepuntozero/style.php @@ -1,11 +1,49 @@ get('duepuntozero', 'colorset'); +$colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset'); + +if (empty($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'); + } } -$s_colorset = get_config('duepuntozero','colorset'); -$uid = local_user(); -$colorset = get_pconfig( $uid, 'duepuntozero', 'colorset'); -if (!x($colorset)) - $colorset = $s_colorset; -?> +echo $setcss;