1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-13 18:14:07 +02:00

Rename variable

This commit is contained in:
Jakub Vrana
2025-03-28 22:44:24 +01:00
parent 4e1e638f98
commit 1f88485a3c
13 changed files with 13 additions and 13 deletions

View File

@@ -117,7 +117,7 @@ if (isset($_GET["clickhouse"])) {
}
class Driver extends SqlDriver {
static array $possibleDrivers = array("allow_url_fopen");
static array $extensions = array("allow_url_fopen");
static string $jush = "clickhouse";
public array $operators = array("=", "<", ">", "<=", ">=", "!=", "~", "!~", "LIKE", "LIKE %%", "IN", "IS NULL", "NOT LIKE", "NOT IN", "IS NOT NULL", "SQL");

View File

@@ -104,7 +104,7 @@ if (isset($_GET["elastic"])) {
}
class Driver extends SqlDriver {
static array $possibleDrivers = array("json + allow_url_fopen");
static array $extensions = array("json + allow_url_fopen");
static string $jush = "elastic";
public array $insertFunctions = array("json");

View File

@@ -85,7 +85,7 @@ if (isset($_GET["firebird"])) {
class Driver extends SqlDriver {
static array $possibleDrivers = array("interbase");
static array $extensions = array("interbase");
static string $jush = "firebird";
public array $operators = array("=");

View File

@@ -140,7 +140,7 @@ if (isset($_GET["imap"])) {
}
class Driver extends SqlDriver {
static array $possibleDrivers = array("imap");
static array $extensions = array("imap");
static string $jush = "imap";
public array $insertFunctions = array("json");
}

View File

@@ -294,7 +294,7 @@ if (isset($_GET["mongo"])) {
class Driver extends SqlDriver {
static array $possibleDrivers = array("mongodb");
static array $extensions = array("mongodb");
static string $jush = "mongo";
public array $insertFunctions = array("json");

View File

@@ -111,7 +111,7 @@ if (isset($_GET["simpledb"])) {
class Driver extends SqlDriver {
static array $possibleDrivers = array("SimpleXML + allow_url_fopen");
static array $extensions = array("SimpleXML + allow_url_fopen");
static string $jush = "simpledb";
public array $operators = array("=", "<", ">", "<=", ">=", "!=", "LIKE", "LIKE %%", "IN", "IS NULL", "NOT LIKE", "IS NOT NULL");