You are here

function google_analytics_et_help in Google Analytics Event Tracking 8

Same name and namespace in other branches
  1. 8.2 google_analytics_et.module \google_analytics_et_help()

Implements hook_help().

File

./google_analytics_et.module, line 13
Contains google_analytics_et.module.

Code

function google_analytics_et_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the google_analytics_et module.
    case 'help.page.google_analytics_et':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows configuration for tracking user interaction events with Google Analytics.') . '</p>';
      return $output;
    default:
  }
}