]> git.mxchange.org Git - friendica.git/commitdiff
Added the share_string field
authorJeroen De Meerleer <me@jeroened.be>
Thu, 21 Feb 2019 17:07:31 +0000 (18:07 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 23 Mar 2019 02:28:07 +0000 (22:28 -0400)
view/theme/frio/config.php
view/theme/frio/templates/theme_settings.tpl

index dcf38d42362cd50b23df90beddba7dc3e4573163..c1ac98286ddf3e3384a37cfac2cbefba3e02ab1e 100644 (file)
@@ -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],
index 50a8934d1ba1cacd519a92a4e5d36a74c2f32880..4f26e090eab2143cc698b97e0c46338bc5126308 100644 (file)
@@ -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}}