You are here

function dba_admin_tables_describe in Database Administration 5

Describe the schema of the selected table.

1 string reference to 'dba_admin_tables_describe'
dba_menu in ./dba.module

File

./dba.module, line 414
Allows administrators direct access to their Drupal database. Written by Jeremy Andrews <jeremy@kerneltrap.org>, June 2004. PostgreSQL functionality provided by AAM <aam@ugpl.de> Major security audit, porting, and maintenance by Derek…

Code

function dba_admin_tables_describe() {
  $output = '';
  if (user_access('dba view database')) {
    $output = dba_table_describe(arg(4));
  }
  print theme('page', $output);
}