]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/config.php
Happy New Year 2023!
[friendica.git] / view / theme / frio / config.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\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 (!DI::userSession()->getLocalUserId()) {
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                         'always_open_compose',
48                 ] as $field) {
49                         if (isset($_POST['frio_' . $field])) {
50                                 DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'frio', $field, $_POST['frio_' . $field]);
51                         }
52
53                 }
54
55                 DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'frio', 'css_modified',     time());
56         }
57 }
58
59 function theme_admin_post(App $a)
60 {
61         if (!$a->isSiteAdmin()) {
62                 return;
63         }
64
65         if (isset($_POST['frio-settings-submit'])) {
66                 foreach ([
67                         'scheme',
68                         'scheme_accent',
69                         'nav_bg',
70                         'nav_icon_color',
71                         'link_color',
72                         'background_color',
73                         'contentbg_transp',
74                         'background_image',
75                         'bg_image_option',
76                         'login_bg_image',
77                         'login_bg_color',
78                         'always_open_compose',
79                 ] as $field) {
80                         if (isset($_POST['frio_' . $field])) {
81                                 DI::config()->set('frio', $field, $_POST['frio_' . $field]);
82                         }
83                 }
84
85                 DI::config()->set('frio', 'css_modified',     time());
86         }
87 }
88
89 function theme_content(): string
90 {
91         if (!DI::userSession()->getLocalUserId()) {
92                 return '';
93         }
94
95         $arr = [
96                 'scheme' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'scheme',
97                         DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'schema',
98                                 DI::config()->get('frio', 'scheme',
99                                         DI::config()->get('frio', 'schema')
100                                 )
101                         )
102                 ),
103
104                 'share_string'        => '',
105                 'scheme_accent'       => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'scheme_accent'      , DI::config()->get('frio', 'scheme_accent')),
106                 'nav_bg'              => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'nav_bg'             , DI::config()->get('frio', 'nav_bg')),
107                 'nav_icon_color'      => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'nav_icon_color'     , DI::config()->get('frio', 'nav_icon_color')),
108                 'link_color'          => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'link_color'         , DI::config()->get('frio', 'link_color')),
109                 'background_color'    => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'background_color'   , DI::config()->get('frio', 'background_color')),
110                 'contentbg_transp'    => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'contentbg_transp'   , DI::config()->get('frio', 'contentbg_transp')),
111                 'background_image'    => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'background_image'   , DI::config()->get('frio', 'background_image')),
112                 'bg_image_option'     => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'bg_image_option'    , DI::config()->get('frio', 'bg_image_option')),
113                 'always_open_compose' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'always_open_compose', DI::config()->get('frio', 'always_open_compose', false)),
114         ];
115
116         return frio_form($arr);
117 }
118
119 function theme_admin(): string
120 {
121         if (!DI::userSession()->getLocalUserId()) {
122                 return '';
123         }
124
125         $arr = [
126                 'scheme'              => DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')),
127                 'scheme_accent'       => DI::config()->get('frio', 'scheme_accent'),
128                 'share_string'        => '',
129                 'nav_bg'              => DI::config()->get('frio', 'nav_bg'),
130                 'nav_icon_color'      => DI::config()->get('frio', 'nav_icon_color'),
131                 'link_color'          => DI::config()->get('frio', 'link_color'),
132                 'background_color'    => DI::config()->get('frio', 'background_color'),
133                 'contentbg_transp'    => DI::config()->get('frio', 'contentbg_transp'),
134                 'background_image'    => DI::config()->get('frio', 'background_image'),
135                 'bg_image_option'     => DI::config()->get('frio', 'bg_image_option'),
136                 'login_bg_image'      => DI::config()->get('frio', 'login_bg_image'),
137                 'login_bg_color'      => DI::config()->get('frio', 'login_bg_color'),
138                 'always_open_compose' => DI::config()->get('frio', 'always_open_compose', false),
139         ];
140
141         return frio_form($arr);
142 }
143
144 function frio_form($arr)
145 {
146         require_once 'view/theme/frio/php/scheme.php';
147         require_once 'view/theme/frio/theme.php';
148
149         $scheme_info = get_scheme_info($arr['scheme']);
150         $disable = $scheme_info['overwrites'];
151
152         $schemes = [
153                 'light' => DI::l10n()->t('Light (Accented)'),
154                 'dark'  => DI::l10n()->t('Dark (Accented)'),
155                 'black' => DI::l10n()->t('Black (Accented)'),
156         ];
157
158         $legacy_schemes = [];
159         foreach (glob('view/theme/frio/scheme/*.php') ?: [] as $file) {
160                 $scheme = basename($file, '.php');
161                 if (!in_array($scheme, ['default', 'light', 'dark', 'black'])) {
162                         $scheme_name = ucfirst($scheme);
163                         $legacy_schemes[$scheme] = $scheme_name;
164                 }
165         }
166
167         $background_image_help = '<strong>' . DI::l10n()->t('Note') . ': </strong>' . DI::l10n()->t('Check image permissions if all users are allowed to see the image');
168
169         $t = Renderer::getMarkupTemplate('theme_settings.tpl');
170         $ctx = [
171                 '$submit'           => DI::l10n()->t('Submit'),
172                 '$title'            => DI::l10n()->t('Theme settings'),
173                 '$custom'           => DI::l10n()->t('Custom'),
174                 '$legacy'           => DI::l10n()->t('Legacy'),
175                 '$accented'         => DI::l10n()->t('Accented'),
176                 '$scheme'           => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], $schemes, $legacy_schemes],
177                 '$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')]],
178                 '$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],
179                 '$nav_bg'           => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', DI::l10n()->t('Navigation bar background color'), $arr['nav_bg'], '', false],
180                 '$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],
181                 '$link_color'       => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', DI::l10n()->t('Link color'), $arr['link_color'], '', false],
182                 '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', DI::l10n()->t('Set the background color'), $arr['background_color'], '', false],
183                 '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', DI::l10n()->t('Content background opacity'), $arr['contentbg_transp'] ?? 100, ''],
184                 '$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],
185                 '$bg_image_options_title' => DI::l10n()->t('Background image style'),
186                 '$bg_image_options' => Image::get_options($arr),
187
188                 '$always_open_compose' => ['frio_always_open_compose', DI::l10n()->t('Always open Compose page'), $arr['always_open_compose'], DI::l10n()->t('The New Post button always open the <a href="/compose">Compose page</a> instead of the modal form. When this is disabled, the Compose page can be accessed with a middle click on the link or from the modal.')],
189         ];
190
191         if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) {
192                 $ctx['$login_bg_image'] = ['frio_login_bg_image', DI::l10n()->t('Login page background image'), $arr['login_bg_image'], $background_image_help, false];
193         }
194
195         if (array_key_exists('login_bg_color', $arr) && !array_key_exists('login_bg_color', $disable)) {
196                 $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];
197         }
198
199         return Renderer::replaceMacros($t, $ctx);
200 }