2014-09-07 10:48:23 +00:00
|
|
|
<?php
|
2018-01-15 02:22:39 +00:00
|
|
|
/**
|
2024-08-24 10:20:23 +00:00
|
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
2024-08-24 10:20:23 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
2018-01-15 02:22:39 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2020-01-18 15:50:57 +00:00
|
|
|
use Friendica\DI;
|
2017-11-07 02:22:52 +00:00
|
|
|
|
2018-01-15 02:22:39 +00:00
|
|
|
if (file_exists("$THEMEPATH/style.css")) {
|
|
|
|
echo file_get_contents("$THEMEPATH/style.css");
|
2014-09-07 10:48:23 +00:00
|
|
|
}
|
2015-06-29 21:03:44 +00:00
|
|
|
|
2022-07-12 23:48:36 +00:00
|
|
|
/*
|
|
|
|
* This script can be included when the maintenance mode is on, which requires us to avoid any config call
|
|
|
|
*/
|
|
|
|
if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) {
|
|
|
|
$s_colorset = DI::config()->get('duepuntozero', 'colorset');
|
|
|
|
$colorset = DI::pConfig()->get($_REQUEST['puid'] ?? 0, 'duepuntozero', 'colorset', $s_colorset);
|
2018-01-15 02:22:39 +00:00
|
|
|
}
|
2014-09-07 10:48:23 +00:00
|
|
|
|
2018-08-02 05:21:01 +00:00
|
|
|
$setcss = '';
|
|
|
|
|
2015-06-29 21:03:44 +00:00
|
|
|
if ($colorset) {
|
2018-01-15 02:22:39 +00:00
|
|
|
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');
|
|
|
|
}
|
2018-08-02 05:21:01 +00:00
|
|
|
|
2018-01-15 02:22:39 +00:00
|
|
|
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');
|
|
|
|
}
|
2015-06-29 21:03:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo $setcss;
|