1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-29 01:00:07 +02:00

Update readme

This commit is contained in:
Jakub Vrana
2021-02-10 19:52:46 +01:00
parent 92d5858b03
commit 9bd63a1326
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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";
?>