]> git.mxchange.org Git - friendica-addons.git/blobdiff - cookienotice/cookienotice.php
Merge pull request #1135 from annando/profile-update
[friendica-addons.git] / cookienotice / cookienotice.php
index 2fda864e9920820fc1222bc0a635ac2a54c0bb42..4ca862800b2e78064d2a4dac274561b90703f5e6 100644 (file)
@@ -8,7 +8,6 @@
  */
 
 use Friendica\App;
-use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\Renderer;
 use Friendica\DI;
@@ -43,7 +42,7 @@ function cookienotice_addon_admin(App $a, &$s)
        $text = DI::config()->get('cookienotice', 'text', DI::l10n()->t('This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.'));
        $oktext = DI::config()->get('cookienotice', 'oktext', DI::l10n()->t('OK'));
 
-       $t = Renderer::getMarkupTemplate('admin.tpl', __DIR__);
+       $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/cookienotice/');
        $s .= Renderer::replaceMacros($t, [
                '$description' => DI::l10n()->t('<b>Configure your cookie usage notice.</b> It should just be a notice, saying that the website uses cookies. It is shown as long as a user didnt confirm clicking the OK button.'),
                '$text' => ['cookienotice-text', DI::l10n()->t('Cookie Usage Notice'), $text],
@@ -71,7 +70,6 @@ function cookienotice_addon_admin_post(App $a)
        if ($_POST['cookienotice-submit']) {
                DI::config()->set('cookienotice', 'text', trim(strip_tags($_POST['cookienotice-text'])));
                DI::config()->set('cookienotice', 'oktext', trim(strip_tags($_POST['cookienotice-oktext'])));
-               info(DI::l10n()->t('cookienotice Settings saved.'));
        }
 }
 
@@ -109,7 +107,7 @@ function cookienotice_page_end(App $a, &$b)
        $text = (string)DI::config()->get('cookienotice', 'text', DI::l10n()->t('This website uses cookies to recognize revisiting and logged in users. You accept the usage of these cookies by continue browsing this website.'));
        $oktext = (string)DI::config()->get('cookienotice', 'oktext', DI::l10n()->t('OK'));
 
-       $page_end_tpl = Renderer::getMarkupTemplate('cookienotice.tpl', __DIR__);
+       $page_end_tpl = Renderer::getMarkupTemplate('cookienotice.tpl', 'addon/cookienotice/');
 
        $page_end = Renderer::replaceMacros($page_end_tpl, [
                '$text' => $text,