Files
adminer/plugins/drivers
Takashi SHIRAI 9f8344e53c Fix the uncaught exception because of namespace.
Signed-off-by: Takashi SHIRAI <shirai@nintendo.co.jp>
2025-03-19 18:35:32 +01:00
..
2025-03-17 19:58:21 +01:00
2025-03-18 13:41:24 +01:00
2025-03-18 13:41:24 +01:00
2025-03-18 19:46:40 +01:00
2025-03-18 13:41:24 +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\Adminer; // or return AdminerPlugin if you want to use other plugins
}

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