/one-click-login

Adminer plugin to display a list of predefined database servers to login with just one click.

Primary LanguagePHP

OneClick Login for Adminer

Display a list of predefined database servers to login with just one click. Don't use this in production enviroment unless the access is restricted

Create a file servers.php and define your database details with the following structure

<?php
return [
	
    '{host}' => array(
		// Required parameters
        'username'  => '{username}',
        'pass'      => '{password}',
        // Optional parameters
        'label'     => 'MySQL',
        'databases' => array(
            '{database_1_name}' => 'Database 1',
            '{database_2_name}' => 'Database 2'
        )
    ),
];

Instantiate OnClick Login according to adminer instructions from adminer

new OneClickLogin(include 'path/to/servers.php');