Skip to content

archlemon/adminer-schema-hide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Adminer Schema Hide

Allows you to specify a list of schemas to hide, in PostgreSQL. This is not a security plugin.

Usage

Set up adminer to work with plugins, and then add the following:

<?php
function adminer_object() {
  // ...
  $plugins = array(
    // ...
    new AdminerSchemaHide([
      // the schemas to hide
      'information_schema',
      'pg_catalog',
      'pg_temp_1',
      'pg_toast',
      'pg_toast_temp_1',
    ]),
    // ...
  );
  // ...

  return new AdminerPlugin($plugins);
}

// ...

About

Hide some schemas in PostgreSQL

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages