Files
webgui/plugins/dynamix/LanguageButton.page
2020-05-14 23:36:00 +02:00

31 lines
829 B
Plaintext

Menu="Buttons:1"
Title="English"
Icon="icon-u-switch"
Code="e982"
---
<?PHP
/* Copyright 2005-2020, Lime Technology
* Copyright 2012-2020, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<script>
<?if (!$locale):?>
// hide switch button when no other language packs
$(function(){$('#nav-item.LanguageButton').hide();});
<?endif;?>
function LanguageButton() {
switchLanguage('');
}
function switchLanguage(lang) {
$.post('/webGui/include/LanguageReset.php',{lang:lang},function(){location.reload();});
}
</script>