Files
adminer/plugins/drivers
Jakub Vrana 94a4f61db2 PHP: Use ?:
2025-03-06 18:12:22 +01:00
..
2025-03-06 18:12:22 +01:00
2025-03-06 18:12:22 +01:00
2025-03-06 18:12:22 +01:00
2025-03-06 17:34:21 +01:00
2021-02-10 19:52:55 +01:00
2025-03-06 18:12:22 +01:00

Enable drivers in this directory like this:

<?php
function adminer_object() {
	include "./plugins/drivers/simpledb.php"; // the driver is enabled just by including
	return new Adminer; // or return AdminerPlugin if you want to use other plugins
}

// include original Adminer
include "./adminer.php";
?>