You are here

function track_field_changes_help in Track Field Changes 7

Same name and namespace in other branches
  1. 8 track_field_changes.module \track_field_changes_help()

Implements hook_help().

File

./track_field_changes.module, line 26
The Track Field Changes module.

Code

function track_field_changes_help($path, $arg) {
  switch ($path) {
    case TRACK_FIELD_CHANGES_ADMIN_PATH:
      $output = '<p>' . t('This page lists all the <em>fields audited</em> that are currently defined on this system.') . '</p>';
      return $output;
  }
}