You are here

function hotjar_help in Hotjar 8

Same name and namespace in other branches
  1. 8.2 hotjar.module \hotjar_help()
  2. 6 hotjar.module \hotjar_help()
  3. 7 hotjar.module \hotjar_help()

Implements hook_help().

File

./hotjar.module, line 54
Drupal Module: Hotjar.

Code

function hotjar_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'hotjar.admin_settings_form':
      return t('<a href="@hotjar_url">Hotjar</a> is a new powerful way to reveal true website user behaviour and experiences in one central tool – giving you the big picture of how you can improve your site\'s UX and conversion rates. All your data is securely stored in the cloud and is accessible at lightning speed.', [
        '@hotjar_url' => 'https://www.hotjar.com/',
      ]);
  }
}