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