You are here

function ga_push_help in GA Push 8

Same name and namespace in other branches
  1. 7 ga_push.module \ga_push_help()

Implements hook_help().

File

./ga_push.module, line 44
Drupal Module: GA Push.

Code

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

    // @TODO Complete help texts
    case 'help.page.ga_push':
      return '<p>' . t('A module that push Google Analytics events') . '</p>';
    case 'ga_push.settings':
      return '<p>' . t('Default method settings.') . '</p>';
  }
}