1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 15:16:44 +02:00

Move beforeunload to plugin

This commit is contained in:
Jakub Vrana
2025-03-24 16:55:40 +01:00
parent 078a8b3d6b
commit 88821a5780
5 changed files with 36 additions and 24 deletions

33
plugins/before-unload.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
/** Display confirmation before unloading page if a form field was changed
* @link https://www.adminer.org/plugins/#use
* @author Jakub Vrana, https://www.vrana.cz/
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerBeforeUnload {
function head($dark = null) {
?>
<script <?php echo Adminer\nonce(); ?>>
// editChange is declared in functions.js
// ajaxForm sets editChange to null on success
addEvent(document, 'change', event => {
const el = event.target;
if (el.form && /post/i.test(el.form.method)) {
editChanged = true;
}
});
addEvent(document, 'submit', () => {
editChanged = null;
});
// all modern browsers ignore string returned from here
onbeforeunload = () => editChanged;
</script>
<?php
}
}