You are here

function crazyegg_help in Crazy Egg Integration 7

Same name and namespace in other branches
  1. 8 crazyegg.module \crazyegg_help()
  2. 6 crazyegg.module \crazyegg_help()

Implements hook_help(). Module summary displayed at the top on the module settings page

File

./crazyegg.module, line 44
The official Crazy Egg Plugin for Drupal. The easiest, free way to add your Crazy Egg tracking script to your Drupal site. See https://www.crazyegg.com for details.

Code

function crazyegg_help($path, $arg) {
  switch ($path) {
    case 'admin/config/system/crazyegg':
      return t('<img src="@logo" style="float: right;" alt="Crazy Egg" />' . '<a href="@url">Crazy Egg</a> is an analytics tool that provides website heatmaps and eye tracking.', array(
        '@url' => 'https://www.crazyegg.com',
        '@logo' => 'https://ceblog.s3.amazonaws.com/wp-content/uploads/2015/06/Crazy-Egg-logo-small.png',
      ));
  }
}