1
0
mirror of https://github.com/vrana/adminer.git synced 2025-09-07 04:40:47 +02:00
Files
2024-10-09 22:00:13 +02:00
..
2021-02-10 19:52:55 +01:00
2024-10-09 22:00:13 +02: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";
?>