]> git.mxchange.org Git - friendica-addons.git/blobdiff - mathjax/mathjax.php
twitter addon FR translation updated THX kalon33
[friendica-addons.git] / mathjax / mathjax.php
index 718a62faffef3216f0f0b20a520e4ede83d6ad6d..43b9d861294709be47bbee6f2ff154cde9770ff0 100644 (file)
@@ -10,8 +10,6 @@
 
 use Friendica\App;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 
@@ -22,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'])) {
@@ -43,7 +29,7 @@ function mathjax_settings_post($a)
        DI::pConfig()->set(local_user(), 'mathjax', 'use', intval($_POST['mathjax_use']));
 }
 
-function mathjax_settings(App $a, &$s)
+function mathjax_settings(App $a, array &$data)
 {
        if (!local_user()) {
                return;
@@ -51,13 +37,17 @@ function mathjax_settings(App $a, &$s)
 
        $use = DI::pConfig()->get(local_user(), 'mathjax', 'use', false);
 
-       $tpl = Renderer::getMarkupTemplate('settings.tpl', __DIR__);
-       $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'),
+       $tpl = Renderer::getMarkupTemplate('settings.tpl', 'addon/mathjax');
+       $html = Renderer::replaceMacros($tpl, [
+               '$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, ''],
        ]);
+
+       $data = [
+               'addon' => 'mathjax',
+               'title' => 'MathJax',
+               'html'  => $html,
+       ];
 }
 
 function mathjax_footer(App $a, &$b)