X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrio%2Fconfig.php;h=7ac7f489ef13a42337609bfeb797c7483a173a88;hb=1c33c2094079a1aa93a9bcefe0437ec46e24a089;hp=dcf38d42362cd50b23df90beddba7dc3e4573163;hpb=854cc3e47296d4a1b01b893376064cf254d84f79;p=friendica.git diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index dcf38d4236..7ac7f489ef 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -57,6 +57,7 @@ function theme_content(App $a) $arr = []; $arr['scheme'] = PConfig::get(local_user(), 'frio', 'scheme', PConfig::get(local_user(), 'frio', 'schema')); + $arr['share_string'] = ''; $arr['nav_bg'] = PConfig::get(local_user(), 'frio', 'nav_bg'); $arr['nav_icon_color'] = PConfig::get(local_user(), 'frio', 'nav_icon_color'); $arr['link_color'] = PConfig::get(local_user(), 'frio', 'link_color'); @@ -76,6 +77,7 @@ function theme_admin(App $a) $arr = []; $arr['scheme'] = Config::get('frio', 'scheme', Config::get('frio', 'scheme')); + $arr['share_string'] = ''; $arr['nav_bg'] = Config::get('frio', 'nav_bg'); $arr['nav_icon_color'] = Config::get('frio', 'nav_icon_color'); $arr['link_color'] = Config::get('frio', 'link_color'); @@ -120,6 +122,7 @@ function frio_form($arr) '$baseurl' => System::baseUrl(), '$title' => L10n::t('Theme settings'), '$scheme' => ['frio_scheme', L10n::t('Select color scheme'), $arr['scheme'], '', $scheme_choices], + '$share_string' => ['frio_share_string', L10n::t('Copy or paste schemestring'), $arr['share_string'], L10n::t('You can copy this string to share your theme with others. Pasting here applies the schemestring'), false, false], '$nav_bg' => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', L10n::t('Navigation bar background color'), $arr['nav_bg'], '', false], '$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],