]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/config.php
Merge pull request #7882 from hoergen/Plusminus
[friendica.git] / view / theme / frio / config.php
index e6595d84e661025f2aa65d2382a37ea11f5bb240..125081235c8515ab89c0729507c3dc00ab689001 100644 (file)
@@ -25,6 +25,7 @@ function theme_post(App $a)
                PConfig::set(local_user(), 'frio', 'background_image', $_POST['frio_background_image'] ?? '');
                PConfig::set(local_user(), 'frio', 'bg_image_option',  $_POST['frio_bg_image_option']  ?? '');
                PConfig::set(local_user(), 'frio', 'css_modified',     time());
+               PConfig::set(local_user(), 'frio', 'enable_compose',   $_POST['frio_enable_compose']   ?? 0);
        }
 }
 
@@ -46,6 +47,7 @@ function theme_admin_post(App $a)
                Config::set('frio', 'login_bg_image',   $_POST['frio_login_bg_image']   ?? '');
                Config::set('frio', 'login_bg_color',   $_POST['frio_login_bg_color']   ?? '');
                Config::set('frio', 'css_modified',     time());
+               Config::set('frio', 'enable_compose',   $_POST['frio_enable_compose']   ?? 0);
        }
 }
 
@@ -67,6 +69,7 @@ function theme_content(App $a)
        $arr['contentbg_transp'] = PConfig::get(local_user(), 'frio', 'contentbg_transp', Config::get('frio', 'contentbg_transp'));
        $arr['background_image'] = PConfig::get(local_user(), 'frio', 'background_image', Config::get('frio', 'background_image'));
        $arr['bg_image_option']  = PConfig::get(local_user(), 'frio', 'bg_image_option' , Config::get('frio', 'bg_image_option'));
+       $arr['enable_compose']   = PConfig::get(local_user(), 'frio', 'enable_compose'  , Config::get('frio', 'enable_compose'));
 
        return frio_form($arr);
 }
@@ -89,6 +92,7 @@ function theme_admin(App $a)
        $arr['bg_image_option']  = Config::get('frio', 'bg_image_option');
        $arr['login_bg_image']   = Config::get('frio', 'login_bg_image');
        $arr['login_bg_color']   = Config::get('frio', 'login_bg_color');
+       $arr['enable_compose']   = Config::get('frio', 'enable_compose');
 
        return frio_form($arr);
 }
@@ -128,10 +132,11 @@ function frio_form($arr)
                '$nav_icon_color'   => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', L10n::t('Navigation bar icon color '), $arr['nav_icon_color'], '', false],
                '$link_color'       => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', L10n::t('Link color'), $arr['link_color'], '', false],
                '$background_color' => array_key_exists('background_color', $disable) ? '' : ['frio_background_color', L10n::t('Set the background color'), $arr['background_color'], '', false],
-               '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), defaults($arr, 'contentbg_transp', 100), ''],
+               '$contentbg_transp' => array_key_exists('contentbg_transp', $disable) ? '' : ['frio_contentbg_transp', L10n::t('Content background opacity'), ($arr['contentbg_transp'] ?? 0) ?: 100, ''],
                '$background_image' => array_key_exists('background_image', $disable) ? '' : ['frio_background_image', L10n::t('Set the background image'), $arr['background_image'], $background_image_help, false],
                '$bg_image_options_title' => L10n::t('Background image style'),
                '$bg_image_options' => Image::get_options($arr),
+               '$enable_compose'   => ['frio_enable_compose', L10n::t('Enable Compose page'), $arr['enable_compose'], L10n::t('This replaces the jot modal window for writing new posts with a link to <a href="compose">the new Compose page</a>.')],
        ];
 
        if (array_key_exists('login_bg_image', $arr) && !array_key_exists('login_bg_image', $disable)) {