mirror of
https://github.com/vrana/adminer.git
synced 2025-08-18 04:11:27 +02:00
9 lines
248 B
PHP
9 lines
248 B
PHP
<?php
|
|
function adminer_object() {
|
|
include_once "../plugins/plugin.php";
|
|
include_once "../plugins/login-sqlite.php";
|
|
return new AdminerPlugin(array(new AdminerLoginSqlite("admin", password_hash("", PASSWORD_DEFAULT))));
|
|
}
|
|
|
|
include "./index.php";
|