Skip to content

adilyildiz/AdminerCopy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

AdminerCopy

Copy data with right click Howto

Install

Detailed Information

Download AdminerCopy.php file to plugins folder in your server. Then paste below code to top of adminer.php file.

Example folder construction:

  • adminer.php
  • plugins/
    • plugin.php
    • AdminerCopy.php
function adminer_object() {
    // required to run any plugin
    include_once "./plugins/plugin.php";
    
    // autoloader
    foreach (glob("plugins/*.php") as $filename) {
        include_once "./$filename";
    }
    
    $plugins = array(
        // specify enabled plugins here
        // other plugins
		    new AdminerCopy,
    );
    
    /* It is possible to combine customization and plugins:
    class AdminerCustomization extends AdminerPlugin {
    }
    return new AdminerCustomization($plugins);
    */
    
    return new AdminerPlugin($plugins);
}

//Adminer file.

About

Copy data with right click

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages