]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/style.php
Merge pull request #8261 from MrPetovan/task/8251-use-about-for-pdesc
[friendica.git] / view / theme / duepuntozero / style.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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 $uid = $_REQUEST['puid'] ?? 0;
29
30 $s_colorset = DI::config()->get('duepuntozero', 'colorset');
31 $colorset = DI::pConfig()->get($uid, 'duepuntozero', 'colorset');
32
33 if (empty($colorset)) {
34         $colorset = $s_colorset;
35 }
36
37 $setcss = '';
38
39 if ($colorset) {
40         if ($colorset == 'greenzero') {
41                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/greenzero.css');
42         }
43
44         if ($colorset == 'purplezero') {
45                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/purplezero.css');
46         }
47
48         if ($colorset == 'easterbunny') {
49                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/easterbunny.css');
50         }
51
52         if ($colorset == 'darkzero') {
53                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/darkzero.css');
54         }
55
56         if ($colorset == 'comix') {
57                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/comix.css');
58         }
59
60         if ($colorset == 'slackr') {
61                 $setcss = file_get_contents('view/theme/duepuntozero/deriv/slackr.css');
62         }
63 }
64
65 echo $setcss;