Skip to content

andit-ogihara/adminer-show-table-row

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

adminer-show-table-row

Adds posibility to show table row from table select page

Install

Detailed Information

Download show-table-row.php file to plugins folder in your server.

Example folder construction:

adminer-folder/
 - adminer.php
 - index.php
 - plugins/
     - plugin.php
     - show-table-row.php

Example of index.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 AdminerShowTableRow(),
    );
    
    /* It is possible to combine customization and plugins:
    class AdminerCustomization extends AdminerPlugin {
    }
    return new AdminerCustomization($plugins);
    */
    
    return new AdminerPlugin($plugins);
}
// include original Adminer or Adminer Editor
include "./adminer.php";

Changelog

2.0

  • Added support for Adminer 5

1.0

  • First release

About

Adminer plugin

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages