[mathjax] Move settings template to separate file

This commit is contained in:
Hypolite Petovan 2018-09-20 21:48:46 -04:00
parent bdb856888d
commit ab571e687f
2 changed files with 24 additions and 19 deletions

View File

@ -34,11 +34,7 @@ function mathjax_uninstall()
function mathjax_settings_post($a) function mathjax_settings_post($a)
{ {
if (!local_user()) { if (!local_user() || empty($_POST['mathjax-submit'])) {
return;
}
if (empty($_POST['mathjax-submit'])) {
return; return;
} }
@ -52,21 +48,14 @@ function mathjax_settings(App $a, &$s)
} }
$use = PConfig::get(local_user(), 'mathjax', 'use', false); $use = PConfig::get(local_user(), 'mathjax', 'use', false);
$usetext = $use ? ' checked="checked" ' : '';
$s .= '<span id="settings_mathjax_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_mathjax_expanded\'); openClose(\'settings_mathjax_inflated\');">';
$s .= '<h3>MathJax ' . L10n::t('Settings') . '</h3>';
$s .= '</span>';
$s .= '<div id="settings_mathjax_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_mathjax_expanded\'); openClose(\'settings_mathjax_inflated\');">';
$s .= '<h3>MathJax ' . L10n::t('Settings') . '</h3>';
$s .= '</span>';
$s .= '<p>' . 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.') . '</p>';
$s .= '<label id="mathjax_label" for="mathjax_use">' . L10n::t('Use the MathJax renderer') . '</label>';
$s .= '<input id="mathjax_use" type="checkbox" name="mathjax_use" value="1"' . $usetext . ' />';
$s .= '<div class="clear"></div>';
$s .= '<div class="settings-submit-wrapper" ><input type="submit" id="mathjax-submit" name="mathjax-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>'; $tpl = get_markup_template('settings.tpl', __DIR__);
$s .= '</div>'; $s .= replace_macros($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'),
]);
} }
function mathjax_footer(App $a, &$b) function mathjax_footer(App $a, &$b)

View File

@ -0,0 +1,16 @@
<span id="settings_mathjax_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose('settings_mathjax_expanded'); openClose('settings_mathjax_inflated');">
<h3>{{$title}}</h3>
</span>
<div id="settings_mathjax_expanded" class="settings-block" style="display: none;">
<span class="fakelink" onclick="openClose('settings_mathjax_expanded'); openClose('settings_mathjax_inflated');">
<h3>{{$title}}</h3>
</span>
<p>{{$description}}</p>
{{include file="field_checkbox.tpl" field=$mathjax_use}}
<div class="clear"></div>
<div class="settings-submit-wrapper">
<button type="submit" id="mathjax-submit" name="mathjax-submit" class="settings-submit" value="1">{{$savesettings}}</button>
</div>
</div>