X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fduepuntozero%2Ftheme.php;h=02882ca943ca91afe73c03c96a77e0f6d3e916e5;hb=f0c2b771570ba27cd1ee782fefc061cfe216b5cf;hp=701fb134918df80fb101b77e7a2c648131a16863;hpb=5bae7159cc7b182e40229bb6d547ccf303eb4282;p=friendica.git diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php old mode 100755 new mode 100644 index 701fb13491..02882ca943 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -1,49 +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; +}