mirror of
https://github.com/vrana/adminer.git
synced 2025-08-06 06:37:33 +02:00
11 lines
339 B
PHP
11 lines
339 B
PHP
<?php
|
|
function adminer_object() {
|
|
include_once "../plugins/login-password-less.php";
|
|
return new Adminer\Plugins(array(
|
|
// TODO: inline the result of password_hash() so that the password is not visible in source codes
|
|
new AdminerLoginPasswordLess(password_hash("YOUR_PASSWORD_HERE", PASSWORD_DEFAULT)),
|
|
));
|
|
}
|
|
|
|
include "./index.php";
|