You are here

function pardot_help in Pardot Integration 2.x

Same name and namespace in other branches
  1. 6 pardot.module \pardot_help()
  2. 7.2 pardot.module \pardot_help()
  3. 7 pardot.module \pardot_help()

Implements hook_help().

File

./pardot.module, line 23
Contains pardot.module.

Code

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

    // Main module help for the pardot module.
    case 'help.page.pardot':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Module to allow Pardot tracking for Drupal websites.') . '</p>';
      return $output;
    default:
  }
}