-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathsqlite.php
More file actions
22 lines (18 loc) · 693 Bytes
/
sqlite.php
File metadata and controls
22 lines (18 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
// see ../plugins/editor-setup.php for an easier solution
function adminer_object() {
include_once "../plugins/login-password-less.php";
class AdminerCustomization extends Adminer\Plugins {
function loginFormField($name, $heading, $value) {
return parent::loginFormField($name, $heading, str_replace("value='server'", "value='sqlite'", $value));
}
function database() {
return "PATH_TO_YOUR_SQLITE_HERE";
}
}
return new AdminerCustomization(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";