You are here

function googleanalytics_help in Google Analytics 7

Same name and namespace in other branches
  1. 5 googleanalytics.module \googleanalytics_help()
  2. 6.4 googleanalytics.module \googleanalytics_help()
  3. 6 googleanalytics.module \googleanalytics_help()
  4. 6.2 googleanalytics.module \googleanalytics_help()
  5. 6.3 googleanalytics.module \googleanalytics_help()
  6. 7.2 googleanalytics.module \googleanalytics_help()

Implements hook_help().

File

./googleanalytics.module, line 36
Drupal Module: Google Analytics

Code

function googleanalytics_help($path, $arg) {
  switch ($path) {
    case 'admin/config/system/googleanalytics':
      return t('<a href="@ga_url">Google Analytics</a> is a free (registration required) website traffic and marketing effectiveness service.', array(
        '@ga_url' => 'http://www.google.com/analytics/',
      ));
  }
}