X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Fstyle.php;h=89f44d9c0454b3e6c7e05d6b5c86bb4c9c44f705;hb=d489ba1510a2dcfaa7851d937d3c37a9541544c9;hp=d5f8696a793b525586d731fd1789a5122e37d66b;hpb=b7bd29c34749705f5812d00aa82b26c481d9526b;p=friendica.git diff --git a/view/theme/duepuntozero/style.php b/view/theme/duepuntozero/style.php index d5f8696a79..89f44d9c04 100644 --- a/view/theme/duepuntozero/style.php +++ b/view/theme/duepuntozero/style.php @@ -2,10 +2,28 @@ if (file_exists("$THEMEPATH/style.css")){ echo file_get_contents("$THEMEPATH/style.css"); } +$uid = get_theme_uid(); + $s_colorset = get_config('duepuntozero','colorset'); -$uid = local_user(); $colorset = get_pconfig( $uid, 'duepuntozero', 'colorset'); if (!x($colorset)) $colorset = $s_colorset; +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'); +} + +echo $setcss; + ?>