Skip to content

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

Notifications You must be signed in to change notification settings

giofreitas/one-click-login

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

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');

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages