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

SimpleDB, Firebird, ClickHouse: Move to plugin

This commit is contained in:
Jakub Vrana
2021-02-08 19:56:15 +01:00
parent 4038144c38
commit 51abdcdab9
10 changed files with 35 additions and 11 deletions

View File

@@ -1,4 +1,15 @@
<?php
$drivers = array();
/** Add a driver
* @param string
* @param string
* @return null
*/
function add_driver($id, $name) {
global $drivers;
$drivers[$id] = $name;
}
/*abstract*/ class Min_SQL {
var $_conn;