Files
adminer/adminer/sqlite.php

12 lines
376 B
PHP
Raw Normal View History

2017-02-21 13:13:39 +01:00
<?php
function adminer_object() {
include_once "../plugins/plugin.php";
2018-05-04 16:52:41 +02:00
include_once "../plugins/login-password-less.php";
return new AdminerPlugin(array(
2018-06-27 08:55:19 +02:00
// TODO: inline the result of password_hash() so that the password is not visible in source codes
2018-05-04 16:52:41 +02:00
new AdminerLoginPasswordLess(password_hash("YOUR_PASSWORD_HERE", PASSWORD_DEFAULT)),
));
2017-02-21 13:13:39 +01:00
}
include "./index.php";