You are here

function browscap_help in Browscap 6.2

Same name and namespace in other branches
  1. 8.3 browscap.module \browscap_help()
  2. 8 browscap.module \browscap_help()
  3. 6 browscap.module \browscap_help()
  4. 7.2 browscap.module \browscap_help()
  5. 7 browscap.module \browscap_help()

Implements hook_help().

File

./browscap.module, line 38
Replacement for PHP's get_browser() function.

Code

function browscap_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/browscap':
      return '<p>' . t('Configure user agent monitoring and browscap information settings.') . '</p>';
  }
}