2014-09-07 12:48:23 +02:00
|
|
|
<?php
|
2017-11-07 03:22:52 +01:00
|
|
|
|
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\PConfig;
|
|
|
|
|
2014-09-07 12:48:23 +02:00
|
|
|
if (file_exists("$THEMEPATH/style.css")){
|
|
|
|
echo file_get_contents("$THEMEPATH/style.css");
|
|
|
|
}
|
2015-06-29 23:03:44 +02:00
|
|
|
$uid = get_theme_uid();
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
$s_colorset = Config::get('duepuntozero','colorset');
|
|
|
|
$colorset = PConfig::get( $uid, 'duepuntozero', 'colorset');
|
2017-04-30 06:21:02 +02:00
|
|
|
if (!x($colorset))
|
2014-09-07 12:48:23 +02:00
|
|
|
$colorset = $s_colorset;
|
|
|
|
|
2015-06-29 23:03:44 +02:00
|
|
|
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;
|