]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/config.php
Update translation fie after adding a string
[friendica.git] / view / theme / frio / config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\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                         'scheme_accent',
38                         'nav_bg',
39                         'nav_icon_color',
40                         'link_color',
41                         'background_color',
42                         'contentbg_transp',
43                         'background_image',
44                         'bg_image_option',
45                         'login_bg_image',
46                         'login_bg_color'
47                 ] as $field) {
48                         if (isset($_POST['frio_' . $field])) {
49                                 DI::pConfig()->set(local_user(), 'frio', $field, $_POST['frio_' . $field]);
50                         }
51
52                 }
53
54                 DI::pConfig()->set(local_user(), 'frio', 'css_modified',     time());
55         }
56 }
57
58 function theme_admin_post(App $a)
59 {
60         if (!$a->isSiteAdmin()) {
61                 return;
62         }
63
64         if (isset($_POST['frio-settings-submit'])) {
65                 foreach ([
66                         'scheme',
67                         'scheme_accent',
68                         'nav_bg',
69                         'nav_icon_color',
70                         'link_color',
71                         'background_color',
72                         'contentbg_transp',
73                         'background_image',
74                         'bg_image_option',
75                         'login_bg_image',
76                         'login_bg_color'
77                 ] as $field) {
78                         if (isset($_POST['frio_' . $field])) {
79                                 DI::config()->set('frio', $field, $_POST['frio_' . $field]);
80                         }
81                 }
82
83                 DI::config()->set('frio', 'css_modified',     time());
84         }
85 }
86
87 function theme_content(App $a)
88 {
89         if (!local_user()) {
90                 return;
91         }
92         $arr = [];
93
94         $node_scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'scheme'));
95
96         $arr['scheme']           = DI::pConfig()->get(local_user(), 'frio', 'scheme', DI::pConfig()->get(local_user(), 'frio', 'schema', $node_scheme));
97         $arr['scheme_accent']    = DI::pConfig()->get(local_user(), 'frio', 'scheme_accent'   , DI::config()->get('frio', 'scheme_accent'));
98         $arr['share_string']     = '';
99         $arr['nav_bg']           = DI::pConfig()->get(local_user(), 'frio', 'nav_bg'          , DI::config()->get('frio', 'nav_bg'));
100         $arr['nav_icon_color']   = DI::pConfig()->get(local_user(), 'frio', 'nav_icon_color'  , DI::config()->get('frio', 'nav_icon_color'));
101         $arr['link_color']       = DI::pConfig()->get(local_user(), 'frio', 'link_color'      , DI::config()->get('frio', 'link_color'));
102         $arr['background_color'] = DI::pConfig()->get(local_user(), 'frio', 'background_color', DI::config()->get('frio', 'background_color'));
103         $arr['contentbg_transp'] = DI::pConfig()->get(local_user(), 'frio', 'contentbg_transp', DI::config()->get('frio', 'contentbg_transp'));
104         $arr['background_image'] = DI::pConfig()->get(local_user(), 'frio', 'background_image', DI::config()->get('frio', 'background_image'));
105         $arr['bg_image_option']  = DI::pConfig()->get(local_user(), 'frio', 'bg_image_option' , DI::config()->get('frio', 'bg_image_option'));
106
107         return frio_form($arr);
108 }
109
110 function theme_admin(App $a)
111 {
112         if (!local_user()) {
113                 return;
114         }
115         $arr = [];
116
117         $arr['scheme']           = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema'));
118         $arr['scheme_accent']    = DI::config()->get('frio', 'scheme_accent');
119         $arr['share_string']     = '';
120         $arr['nav_bg']           = DI::config()->get('frio', 'nav_bg');
121         $arr['nav_icon_color']   = DI::config()->get('frio', 'nav_icon_color');
122         $arr['link_color']       = DI::config()->get('frio', 'link_color');
123         $arr['background_color'] = DI::config()->get('frio', 'background_color');
124         $arr['contentbg_transp'] = DI::config()->get('frio', 'contentbg_transp');
125         $arr['background_image'] = DI::config()->get('frio', 'background_image');
126         $arr['bg_image_option']  = DI::config()->get('frio', 'bg_image_option');
127         $arr['login_bg_image']   = DI::config()->get('frio', 'login_bg_image');
128         $arr['login_bg_color']   = DI::config()->get('frio', 'login_bg_color');
129
130         return frio_form($arr);
131 }
132
133 function frio_form($arr)
134 {
135         require_once 'view/theme/frio/php/scheme.php';
136         require_once 'view/theme/frio/theme.php';
137
138         $scheme_info = get_scheme_info($arr['scheme']);
139         $disable = $scheme_info['overwrites'];
140
141         $schemes = [
142                 'light' => DI::l10n()->t('Light (Accented)'),
143                 'dark'  => DI::l10n()->t('Dark (Accented)'),
144                 'black' => DI::l10n()->t('Black (Accented)'),
145         ];
146
147         $legacy_schemes = [];
148         foreach (glob('view/theme/frio/scheme/*.php') ?: [] as $file) {
149                 $scheme = basename($file, '.php');
150                 if (!in_array($scheme, ['default', 'light', 'dark', 'black'])) {
151                         $scheme_name = ucfirst($scheme);
152                         $legacy_schemes[$scheme] = $scheme_name;
153                 }
154         }
155
156         $background_image_help = '<strong>' . DI::l10n()->t('Note') . ': </strong>' . DI::l10n()->t('Check image permissions if all users are allowed to see the image');
157
158         $t = Renderer::getMarkupTemplate('theme_settings.tpl');
159         $ctx = [
160                 '$submit'           => DI::l10n()->t('Submit'),
161                 '$title'            => DI::l10n()->t('Theme settings'),
162                 '$custom'           => DI::l10n()->t('Custom'),
163                 '$legacy'           => DI::l10n()->t('Legacy'),
164                 '$accented'         => DI::l10n()->t('Accented'),
165                 '$scheme'           => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], $schemes, $legacy_schemes],
166                 '$scheme_accent'    => !$scheme_info['accented'] ? '' : ['frio_scheme_accent', DI::l10n()->t('Select scheme accent'), $arr['scheme_accent'], ['blue' => DI::l10n()->t('Blue'), 'red' => DI::l10n()->t('Red'), 'purple' => DI::l10n()->t('Purple'), 'green' => DI::l10n()->t('Green'), 'pink' => DI::l10n()->t('Pink')]],
167                 '$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],
168                 '$nav_bg'           => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', DI::l10n()->t('Navigation bar background color'), $arr['nav_bg'], '', false],
169                 '$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],
170                 '$link_color'       => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', DI::l10n()->t('Link color'), $arr['link_color'], '', false],
171                 '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', DI::l10n()->t('Set the background color'), $arr['background_color'], '', false],
172                 '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', DI::l10n()->t('Content background opacity'), $arr['contentbg_transp'] ?? 100, ''],
173                 '$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],
174                 '$bg_image_options_title' => DI::l10n()->t('Background image style'),
175                 '$bg_image_options' => Image::get_options($arr),
176         ];
177
178         if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) {
179                 $ctx['$login_bg_image'] = ['frio_login_bg_image', DI::l10n()->t('Login page background image'), $arr['login_bg_image'], $background_image_help, false];
180         }
181
182         if (array_key_exists('login_bg_color', $arr) && !array_key_exists('login_bg_color', $disable)) {
183                 $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];
184         }
185
186         $o = Renderer::replaceMacros($t, $ctx);
187
188         return $o;
189 }