1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-05 06:07:57 +02:00

New plugin: Set up driver, server and database in Adminer Editor

This commit is contained in:
Jakub Vrana
2025-04-03 15:45:37 +02:00
parent dea16493ff
commit 96191587cc
4 changed files with 43 additions and 3 deletions

View File

@@ -4,6 +4,7 @@
- PostgreSQL: Support COPY FROM stdin in SQL query (bug #942) - PostgreSQL: Support COPY FROM stdin in SQL query (bug #942)
- MySQL: Display number of found rows in group queries (regression from 5.1.1) - MySQL: Display number of found rows in group queries (regression from 5.1.1)
- non-MySQL: Parse '--' without trailing space as comment in SQL command (bug SF-842) - non-MySQL: Parse '--' without trailing space as comment in SQL command (bug SF-842)
- New plugin: Set up driver, server and database in Adminer Editor
## Adminer 5.1.1 (released 2025-04-02) ## Adminer 5.1.1 (released 2025-04-02)
- Export: Fix tar (regression from 5.0.3) - Export: Fix tar (regression from 5.0.3)

View File

@@ -18,9 +18,6 @@ If downloaded from Git then run: `git submodule update --init`
- `adminer/index.php` - Run development version of Adminer - `adminer/index.php` - Run development version of Adminer
- `editor/index.php` - Run development version of Adminer Editor - `editor/index.php` - Run development version of Adminer Editor
- `editor/example.php` - Example customization - `editor/example.php` - Example customization
- `adminer/sqlite.php` - Development version of Adminer with SQLite allowed
- `editor/sqlite.php` - Development version of Editor with SQLite allowed
- `adminer/designs.php` - Development version of Adminer with `adminer.css` switcher
- `compile.php` - Create a single file version - `compile.php` - Create a single file version
- `lang.php` - Update translations - `lang.php` - Update translations
- `tests/*.html` - Katalon Recorder test suites - `tests/*.html` - Katalon Recorder test suites

View File

@@ -1,4 +1,6 @@
<?php <?php
// see ../plugins/editor-setup.php for an easier solution
function adminer_object() { function adminer_object() {
include_once "../plugins/login-password-less.php"; include_once "../plugins/login-password-less.php";

40
plugins/editor-setup.php Normal file
View File

@@ -0,0 +1,40 @@
<?php
/** Set up driver, server and database to use with Adminer Editor
* @link https://www.adminer.org/plugins/#use
* @author Jakub Vrana, https://www.vrana.cz/
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other)
*/
class AdminerEditorSetup {
private $driver;
private $server;
private $database;
/**
* @param string $driver 'server' is MySQL, 'pgsql' is PostgreSQL, ...
* @param string $server null means the default host, usually localhost
* @param string $database null is the first available database
*/
function __construct($driver = 'server', $server = null, $database = null) {
$this->driver = $driver;
$this->server = $server;
$this->database = $database;
}
function loginFormField($name, $heading, $value) {
if ($name == 'username') {
return $heading . str_replace("value='server'", "value='$this->driver'", $value) . "\n";
}
}
function credentials() {
return array($this->server, $_GET["username"], Adminer\get_password());
}
function database() {
if ($this->database) {
return $this->database;
}
}
}