]> git.mxchange.org Git - friendica-addons.git/blobdiff - mathjax/mathjax.php
js upload addon HU translation added THX Balázs Úr
[friendica-addons.git] / mathjax / mathjax.php
index 6e80d68f6f987984cd57e6f44b5f5950fb79cdb3..9734457d616b11e4888d41c21b5fa0bee6df17d0 100644 (file)
@@ -10,9 +10,8 @@
 
 use Friendica\App;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
+use Friendica\DI;
 
 function mathjax_install()
 {
@@ -21,25 +20,13 @@ function mathjax_install()
        Hook::register('addon_settings_post', __FILE__, 'mathjax_settings_post');
 }
 
-function mathjax_uninstall()
-{
-       Hook::unregister('footer'             , __FILE__, 'mathjax_footer');
-       Hook::unregister('addon_settings'     , __FILE__, 'mathjax_settings');
-       Hook::unregister('addon_settings_post', __FILE__, 'mathjax_settings_post');
-
-       // Legacy hooks
-       Hook::unregister('load_config'        , __FILE__, 'mathjax_load_config');
-       Hook::unregister('page_header'        , __FILE__, 'mathjax_page_header');
-       Hook::unregister('template_vars'      , __FILE__, 'mathjax_template_vars');
-}
-
 function mathjax_settings_post($a)
 {
        if (!local_user() || empty($_POST['mathjax-submit'])) {
                return;
        }
 
-       PConfig::set(local_user(), 'mathjax', 'use', intval($_POST['mathjax_use']));
+       DI::pConfig()->set(local_user(), 'mathjax', 'use', intval($_POST['mathjax_use']));
 }
 
 function mathjax_settings(App $a, &$s)
@@ -48,14 +35,14 @@ function mathjax_settings(App $a, &$s)
                return;
        }
 
-       $use = PConfig::get(local_user(), 'mathjax', 'use', false);
+       $use = DI::pConfig()->get(local_user(), 'mathjax', 'use', false);
 
-       $tpl = Renderer::getMarkupTemplate('settings.tpl', __DIR__);
+       $tpl = Renderer::getMarkupTemplate('settings.tpl', 'addon/mathjax');
        $s .= Renderer::replaceMacros($tpl, [
                '$title'        => 'MathJax',
-               '$description'  => L10n::t('The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'),
-               '$mathjax_use'  => ['mathjax_use', L10n::t('Use the MathJax renderer'), $use, ''],
-               '$savesettings' => L10n::t('Save Settings'),
+               '$description'  => DI::l10n()->t('The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'),
+               '$mathjax_use'  => ['mathjax_use', DI::l10n()->t('Use the MathJax renderer'), $use, ''],
+               '$savesettings' => DI::l10n()->t('Save Settings'),
        ]);
 }
 
@@ -63,8 +50,8 @@ function mathjax_footer(App $a, &$b)
 {
        //  if the visitor of the page is not a local_user, use MathJax
        //  otherwise check the users settings.
-       if (!local_user() || PConfig::get(local_user(), 'mathjax', 'use', false)) {
-               $a->registerFooterScript(__DIR__ . '/asset/MathJax.js?config=TeX-MML-AM_CHTML');
-               $a->registerFooterScript(__DIR__ . '/mathjax.js');
+       if (!local_user() || DI::pConfig()->get(local_user(), 'mathjax', 'use', false)) {
+               DI::page()->registerFooterScript(__DIR__ . '/asset/MathJax.js?config=TeX-MML-AM_CHTML');
+               DI::page()->registerFooterScript(__DIR__ . '/mathjax.js');
        }
 }