2014-09-07 12:48:23 +02:00
|
|
|
<?php
|
2018-01-15 03:22:39 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-01-15 03:22:39 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
use Friendica\DI;
|
2017-11-07 03:22:52 +01:00
|
|
|
|
2018-01-15 03:22:39 +01:00
|
|
|
if (file_exists("$THEMEPATH/style.css")) {
|
|
|
|
echo file_get_contents("$THEMEPATH/style.css");
|
2014-09-07 12:48:23 +02:00
|
|
|
}
|
2015-06-29 23:03:44 +02:00
|
|
|
|
2019-10-16 14:43:59 +02:00
|
|
|
$uid = $_REQUEST['puid'] ?? 0;
|
2018-01-15 03:22:39 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$s_colorset = DI::config()->get('duepuntozero', 'colorset');
|
2020-01-18 16:50:57 +01:00
|
|
|
$colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset');
|
2018-01-15 03:22:39 +01:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (empty($colorset)) {
|
2018-01-15 03:22:39 +01:00
|
|
|
$colorset = $s_colorset;
|
|
|
|
}
|
2014-09-07 12:48:23 +02:00
|
|
|
|
2018-08-02 07:21:01 +02:00
|
|
|
$setcss = '';
|
|
|
|
|
2015-06-29 23:03:44 +02:00
|
|
|
if ($colorset) {
|
2018-01-15 03:22:39 +01: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 07:21:01 +02:00
|
|
|
|
2018-01-15 03:22:39 +01: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 23:03:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
echo $setcss;
|