adminerevo/plugins/drivers/README
2021-02-08 19:56:15 +01:00

12 lines
309 B
Plaintext

Enable drivers in this directory like this:
<?php
function adminer_object() {
include "./plugins/drivers/simpledb.inc.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";
?>