]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/config.php
[frio] Keep settings between scheme changes
[friendica.git] / view / theme / frio / config.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\App;
23 use Friendica\Core\Renderer;
24 use Friendica\DI;
25
26 require_once 'view/theme/frio/php/Image.php';
27
28 function theme_post(App $a)
29 {
30         if (!local_user()) {
31                 return;
32         }
33
34         if (isset($_POST['frio-settings-submit'])) {
35                 foreach ([
36                         'scheme',
37                         'nav_bg',
38                         'nav_icon_color',
39                         'link_color',
40                         'background_color',
41                         'contentbg_transp',
42                         'background_image',
43                         'bg_image_option',
44                         'login_bg_image',
45                         'login_bg_color'
46                 ] as $field) {
47                         if (isset($_POST['frio_' . $field])) {
48                                 DI::pConfig()->set(local_user(), 'frio', $field, $_POST['frio_' . $field]);
49                         }
50
51                 }
52
53                 DI::pConfig()->set(local_user(), 'frio', 'css_modified',     time());
54         }
55 }
56
57 function theme_admin_post(App $a)
58 {
59         if (!is_site_admin()) {
60                 return;
61         }
62
63         if (isset($_POST['frio-settings-submit'])) {
64                 foreach ([
65                         'scheme',
66                         'nav_bg',
67                         'nav_icon_color',
68                         'link_color',
69                         'background_color',
70                         'contentbg_transp',
71                         'background_image',
72                         'bg_image_option',
73                         'login_bg_image',
74                         'login_bg_color'
75                 ] as $field) {
76                         if (isset($_POST['frio_' . $field])) {
77                                 DI::config()->set('frio', $field, $_POST['frio_' . $field]);
78                         }
79                 }
80
81                 DI::config()->set('frio', 'css_modified',     time());
82         }
83 }
84
85 function theme_content(App $a)
86 {
87         if (!local_user()) {
88                 return;
89         }
90         $arr = [];
91
92         $node_scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'scheme'));
93
94         $arr['scheme']           = DI::pConfig()->get(local_user(), 'frio', 'scheme', DI::pConfig()->get(local_user(), 'frio', 'schema', $node_scheme));
95         $arr['share_string']     = '';
96         $arr['nav_bg']           = DI::pConfig()->get(local_user(), 'frio', 'nav_bg'          , DI::config()->get('frio', 'nav_bg'));
97         $arr['nav_icon_color']   = DI::pConfig()->get(local_user(), 'frio', 'nav_icon_color'  , DI::config()->get('frio', 'nav_icon_color'));
98         $arr['link_color']       = DI::pConfig()->get(local_user(), 'frio', 'link_color'      , DI::config()->get('frio', 'link_color'));
99         $arr['background_color'] = DI::pConfig()->get(local_user(), 'frio', 'background_color', DI::config()->get('frio', 'background_color'));
100         $arr['contentbg_transp'] = DI::pConfig()->get(local_user(), 'frio', 'contentbg_transp', DI::config()->get('frio', 'contentbg_transp'));
101         $arr['background_image'] = DI::pConfig()->get(local_user(), 'frio', 'background_image', DI::config()->get('frio', 'background_image'));
102         $arr['bg_image_option']  = DI::pConfig()->get(local_user(), 'frio', 'bg_image_option' , DI::config()->get('frio', 'bg_image_option'));
103
104         return frio_form($arr);
105 }
106
107 function theme_admin(App $a)
108 {
109         if (!local_user()) {
110                 return;
111         }
112         $arr = [];
113
114         $arr['scheme']           = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema'));
115         $arr['share_string']     = '';
116         $arr['nav_bg']           = DI::config()->get('frio', 'nav_bg');
117         $arr['nav_icon_color']   = DI::config()->get('frio', 'nav_icon_color');
118         $arr['link_color']       = DI::config()->get('frio', 'link_color');
119         $arr['background_color'] = DI::config()->get('frio', 'background_color');
120         $arr['contentbg_transp'] = DI::config()->get('frio', 'contentbg_transp');
121         $arr['background_image'] = DI::config()->get('frio', 'background_image');
122         $arr['bg_image_option']  = DI::config()->get('frio', 'bg_image_option');
123         $arr['login_bg_image']   = DI::config()->get('frio', 'login_bg_image');
124         $arr['login_bg_color']   = DI::config()->get('frio', 'login_bg_color');
125
126         return frio_form($arr);
127 }
128
129 function frio_form($arr)
130 {
131         require_once 'view/theme/frio/php/scheme.php';
132
133         $scheme_info = get_scheme_info($arr['scheme']);
134         $disable = $scheme_info['overwrites'];
135
136         $scheme_choices = [];
137         $scheme_choices['---'] = DI::l10n()->t('Custom');
138         $files = glob('view/theme/frio/scheme/*.php');
139         if ($files) {
140                 foreach ($files as $file) {
141                         $f = basename($file, '.php');
142                         if ($f != 'default') {
143                                 $scheme_name = ucfirst($f);
144                                 $scheme_choices[$f] = $scheme_name;
145                         }
146                 }
147         }
148
149         $background_image_help = '<strong>' . DI::l10n()->t('Note') . ': </strong>' . DI::l10n()->t('Check image permissions if all users are allowed to see the image');
150
151         $t = Renderer::getMarkupTemplate('theme_settings.tpl');
152         $ctx = [
153                 '$submit'           => DI::l10n()->t('Submit'),
154                 '$title'            => DI::l10n()->t('Theme settings'),
155                 '$scheme'           => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], '', $scheme_choices],
156                 '$share_string'     => $arr['scheme'] != '---' ? '' : ['frio_share_string', DI::l10n()->t('Copy or paste schemestring'), $arr['share_string'], DI::l10n()->t('You can copy this string to share your theme with others. Pasting here applies the schemestring'), false, false],
157                 '$nav_bg'           => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', DI::l10n()->t('Navigation bar background color'), $arr['nav_bg'], '', false],
158                 '$nav_icon_color'   => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', DI::l10n()->t('Navigation bar icon color '), $arr['nav_icon_color'], '', false],
159                 '$link_color'       => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', DI::l10n()->t('Link color'), $arr['link_color'], '', false],
160                 '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', DI::l10n()->t('Set the background color'), $arr['background_color'], '', false],
161                 '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', DI::l10n()->t('Content background opacity'), ($arr['contentbg_transp'] ?? 0) ?: 100, ''],
162                 '$background_image' => array_key_exists('background_image', $disable) ? '' : ['frio_background_image', DI::l10n()->t('Set the background image'), $arr['background_image'], $background_image_help, false],
163                 '$bg_image_options_title' => DI::l10n()->t('Background image style'),
164                 '$bg_image_options' => Image::get_options($arr),
165         ];
166
167         if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) {
168                 $ctx['$login_bg_image'] = ['frio_login_bg_image', DI::l10n()->t('Login page background image'), $arr['login_bg_image'], $background_image_help, false];
169         }
170
171         if (array_key_exists('login_bg_color', $arr) && !array_key_exists('login_bg_color', $disable)) {
172                 $ctx['$login_bg_color'] = ['frio_login_bg_color', DI::l10n()->t('Login page background color'), $arr['login_bg_color'], DI::l10n()->t('Leave background image and color empty for theme defaults'), false];
173         }
174
175         $o = Renderer::replaceMacros($t, $ctx);
176
177         return $o;
178 }