]> git.mxchange.org Git - friendica-addons.git/blobdiff - mathjax/mathjax.php
[markdown] Escape mentions which username can contain Markdown-like syntax
[friendica-addons.git] / mathjax / mathjax.php
index fd58b265a17f4c6077c675b526979ed104c04961..9734457d616b11e4888d41c21b5fa0bee6df17d0 100644 (file)
@@ -10,7 +10,6 @@
 
 use Friendica\App;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 
@@ -21,18 +20,6 @@ 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'])) {
@@ -50,7 +37,7 @@ function mathjax_settings(App $a, &$s)
 
        $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'  => 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.'),