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

Simplify SQLite development

This commit is contained in:
Jakub Vrana
2017-02-21 13:13:39 +01:00
parent f8fd4dd6e3
commit 56b6590a4f
2 changed files with 9 additions and 0 deletions

8
adminer/sqlite.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
function adminer_object() {
include_once "../plugins/plugin.php";
include_once "../plugins/login-sqlite.php";
return new AdminerPlugin(array(new AdminerLoginSqlite));
}
include "./index.php";