X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Ftheme.php;h=02882ca943ca91afe73c03c96a77e0f6d3e916e5;hb=f0c2b771570ba27cd1ee782fefc061cfe216b5cf;hp=ebced7b9b84ebfd875a7ae14117102dae2e938ad;hpb=273594af62c960b5a52da5ec1cf6d6bd450415ba;p=friendica.git diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index ebced7b9b8..02882ca943 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -1,2 +1,103 @@ theme_info = array(); + +use Friendica\App; +use Friendica\Core\Config; +use Friendica\Core\PConfig; + +function duepuntozero_init(App $a) { + +$a->set_template_engine('smarty3'); + + $colorset = PConfig::get( local_user(), 'duepuntozero','colorset'); + if (!$colorset) + $colorset = Config::get('duepuntozero', 'colorset'); // user setting have priority, then node settings + if ($colorset) { + if ($colorset == 'greenzero') + $a->page['htmlhead'] .= ''."\n"; + if ($colorset == 'purplezero') + $a->page['htmlhead'] .= ''."\n"; + if ($colorset == 'easterbunny') + $a->page['htmlhead'] .= ''."\n"; + if ($colorset == 'darkzero') + $a->page['htmlhead'] .= ''."\n"; + if ($colorset == 'comix') + $a->page['htmlhead'] .= ''."\n"; + if ($colorset == 'slackr') + $a->page['htmlhead'] .= ''."\n"; + } +$a->page['htmlhead'] .= <<< EOT + +EOT; +}