From 67ccb8bfcd083fc9cc860d9ea1979c47a666460a Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Thu, 21 Feb 2019 18:07:31 +0100 Subject: [PATCH] Added the share_string field --- view/theme/frio/config.php | 3 +++ view/theme/frio/templates/theme_settings.tpl | 1 + 2 files changed, 4 insertions(+) diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index f73ef3ab0a..a8d4198b84 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], diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 50a8934d1b..4f26e090ea 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -6,6 +6,7 @@ {{include file="field_select.tpl" field=$scheme}} +{{if $nav_bg}}{{include file="field_input.tpl" field=$share_string}}{{/if}} {{if $nav_bg}}{{include file="field_colorinput.tpl" field=$nav_bg}}{{/if}} {{if $nav_icon_color}}{{include file="field_colorinput.tpl" field=$nav_icon_color}}{{/if}} {{if $link_color}}{{include file="field_colorinput.tpl" field=$link_color}}{{/if}}