mirror of
https://github.com/vrana/adminer.git
synced 2025-08-10 08:34:20 +02:00
New plugin: Allow switching light and dark mode (fix #926)
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
- Plugins: autoload plugins from adminer-plugins/
|
- Plugins: autoload plugins from adminer-plugins/
|
||||||
- Plugins: configure plugins with adminer-plugins.php
|
- Plugins: configure plugins with adminer-plugins.php
|
||||||
- Plugins: Display loaded plugins in server overview
|
- Plugins: Display loaded plugins in server overview
|
||||||
|
- New plugin: Allow switching light and dark mode (bug #926)
|
||||||
|
|
||||||
## Adminer 5.0.6 (released 2025-03-17)
|
## Adminer 5.0.6 (released 2025-03-17)
|
||||||
- Align numbers right (bug #912)
|
- Align numbers right (bug #912)
|
||||||
|
41
plugins/dark-switcher.php
Normal file
41
plugins/dark-switcher.php
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/** Allow switching light and dark mode
|
||||||
|
* @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 AdminerDarkSwitcher {
|
||||||
|
|
||||||
|
function head($dark = null) {
|
||||||
|
?>
|
||||||
|
<script <?php echo Adminer\nonce(); ?>>
|
||||||
|
let adminerDark;
|
||||||
|
|
||||||
|
function adminerDarkSwitch() {
|
||||||
|
adminerDark = !adminerDark;
|
||||||
|
adminerDarkSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
function adminerDarkSet() {
|
||||||
|
qsa('link[href$="dark.css"]').forEach(link => link.media = (adminerDark ? '' : 'never'));
|
||||||
|
qs('meta[name="color-scheme"]').content = (adminerDark ? 'dark' : 'light');
|
||||||
|
cookie('adminer_dark=' + (adminerDark ? 1 : 0), 30);
|
||||||
|
}
|
||||||
|
|
||||||
|
const saved = document.cookie.match(/adminer_dark=(\d)/);
|
||||||
|
if (saved) {
|
||||||
|
adminerDark = +saved[1];
|
||||||
|
adminerDarkSet();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
function navigation($missing) {
|
||||||
|
echo "<label style='position: fixed; bottom: .5em; right: .5em;'><input type='checkbox'> dark</label>"
|
||||||
|
. Adminer\script("if (adminerDark != null) adminerDarkSet(); mixin(qsl('input'), {onclick: adminerDarkSwitch, checked: adminerDark});") . "\n"
|
||||||
|
;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user