mirror of
https://github.com/vrana/adminer.git
synced 2025-08-07 07:06:45 +02:00
New plugin: Set up driver, server and database in Adminer Editor
This commit is contained in:
40
plugins/editor-setup.php
Normal file
40
plugins/editor-setup.php
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user