]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/style.php
Several settings can now be reached via the site settings
[friendica.git] / view / theme / duepuntozero / style.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\DI;
23
24 if (file_exists("$THEMEPATH/style.css")) {
25         echo file_get_contents("$THEMEPATH/style.css");
26 }
27
28 /*
29  * This script can be included when the maintenance mode is on, which requires us to avoid any config call
30  */
31 if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) {
32         $s_colorset = DI::config()->get('duepuntozero', 'colorset');
33         $colorset = DI::pConfig()->get($_REQUEST['puid'] ?? 0, 'duepuntozero', 'colorset', $s_colorset);
34 }
35
36 $setcss = '';
37
38 if ($colorset) {
39         if ($colorset == 'greenzero') {
40                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
41         }
42
43         if ($colorset == 'purplezero') {
44                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/purplezero.css');
45         }
46
47         if ($colorset == 'easterbunny') {
48                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/easterbunny.css');
49         }
50
51         if ($colorset == 'darkzero') {
52                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/darkzero.css');
53         }
54
55         if ($colorset == 'comix') {
56                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/comix.css');
57         }
58
59         if ($colorset == 'slackr') {
60                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/slackr.css');
61         }
62 }
63
64 echo $setcss;