You are here

function dba_help in Database Administration 5

Same name and namespace in other branches
  1. 7 dba.module \dba_help()

File

./dba.module, line 20
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_help($section = '') {
  switch ($section) {
    case 'admin/help#dba':
      $output .= t('The dba module allows site administrators a method for direct database administration. This is a dangerous module, in that it gives unlimited access and control over the active database. With this module, it is possible to corrupt or delete an entire drupal database. Use at your own risk.');
      break;
  }
  return $output;
}