]> git.mxchange.org Git - friendica-addons.git/blobdiff - cookienotice/cookienotice.php
Add files via upload
[friendica-addons.git] / cookienotice / cookienotice.php
index 0cbefe5207bffee21de3f63d1cc53e7f2ad6a603..f352997332c0aa1a4e389b2fe114b1b59fe6e5cf 100644 (file)
@@ -8,7 +8,6 @@
  */
 
 use Friendica\App;
-use Friendica\Core\Config;
 use Friendica\Core\Hook;
 use Friendica\Core\Renderer;
 use Friendica\DI;
@@ -36,14 +35,14 @@ function cookienotice_install()
  */
 function cookienotice_addon_admin(App $a, &$s)
 {
-       if (!is_site_admin()) {
+       if (!$a->isSiteAdmin()) {
                return;
        }
 
        $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],
@@ -64,14 +63,13 @@ function cookienotice_addon_admin(App $a, &$s)
  */
 function cookienotice_addon_admin_post(App $a)
 {
-       if (!is_site_admin()) {
+       if (!$a->isSiteAdmin()) {
                return;
        }
 
        if ($_POST['cookienotice-submit']) {
-               Config::set('cookienotice', 'text', trim(strip_tags($_POST['cookienotice-text'])));
-               Config::set('cookienotice', 'oktext', trim(strip_tags($_POST['cookienotice-oktext'])));
-               info(DI::l10n()->t('cookienotice Settings saved.'));
+               DI::config()->set('cookienotice', 'text', trim(strip_tags($_POST['cookienotice-text'])));
+               DI::config()->set('cookienotice', 'oktext', trim(strip_tags($_POST['cookienotice-oktext'])));
        }
 }
 
@@ -87,11 +85,8 @@ function cookienotice_addon_admin_post(App $a)
  */
 function cookienotice_page_content_top(App $a, &$b)
 {
-       $stylesheetPath = __DIR__ . '/cookienotice.css';
-       $footerscriptPath = __DIR__ . '/cookienotice.js';
-
-       DI::page()->registerStylesheet($stylesheetPath);
-       DI::page()->registerFooterScript($footerscriptPath);
+       DI::page()->registerStylesheet(__DIR__ . '/cookienotice.css');
+       DI::page()->registerFooterScript(__DIR__ . '/cookienotice.js');
 }
 
 /**
@@ -109,7 +104,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,