adminerevo/plugins/drivers
2024-03-23 18:58:39 +01:00
..
clickhouse.php Change 'Invalid credentials.' message 2024-03-23 18:58:39 +01:00
firebird.php Remove .inc extension from driver plugins 2021-02-10 11:43:56 +01:00
readme.txt Update readme 2021-02-10 19:52:55 +01:00
simpledb.php Change 'Invalid credentials.' message 2024-03-23 18:58:39 +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";
?>