]> git.mxchange.org Git - friendica-addons.git/commitdiff
cookienotice addon - added default values for config data
authorPeter Liebetrau <peter.liebetrau@gmail.com>
Wed, 23 Jan 2019 10:00:52 +0000 (11:00 +0100)
committerPeter Liebetrau <peter.liebetrau@gmail.com>
Wed, 23 Jan 2019 10:00:52 +0000 (11:00 +0100)
cookienotice/cookienotice.php

index 7e945c157c15be69e2ced3622ba181f87f16b861..fbe5a1b1fe984401fb14cd46aa4f7ad678dc0130 100644 (file)
@@ -7,7 +7,6 @@
  * Author: Peter Liebetrau <https://socivitas/profile/peerteer>
  * 
  */
-use Friendica\Core\Addon;
 use Friendica\Core\Hook;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
@@ -60,17 +59,11 @@ function cookienotice_addon_settings(\Friendica\App $a, &$s)
        }
 
        /* Add our stylesheet to the page so we can make our settings look nice */
-    $stylesheetPath = 'addon/cookienotice/cookienotice.css';
-    $a->registerStylesheet($stylesheetPath);
+       $stylesheetPath = 'addon/cookienotice/cookienotice.css';
+       $a->registerStylesheet($stylesheetPath);
 
-       $text = Config::get('cookienotice', 'text');
-       if (!$text) {
-               $text = '';
-       }
-       $oktext = Config::get('cookienotice', 'oktext');
-       if (!$oktext) {
-               $oktext = '';
-       }
+       $text = Config::get('cookienotice', 'text', L10n::t('This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.'));
+       $oktext = Config::get('cookienotice', 'oktext', L10n::t('OK'));
 
        $t = Renderer::getMarkupTemplate("settings.tpl", "addon/cookienotice/");
        $s .= Renderer::replaceMacros($t, [