You are here

function dba_help in Database Administration 7

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

Implements hook_help().

File

./dba.module, line 11
Directly administer your Drupal website.

Code

function dba_help($path, $arg) {
  switch ($path) {
    case 'admin/help#dba':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . 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.') . '</p>';
      $output .= '<h3>' . t('Uses') . '</h3>';
      $output .= '<dl>';
      $output .= '<dt>' . t('Viewing database tables') . '</dt>';
      $output .= '</dl>';
      return $output;
  }
}