You are here

function _google_tag_help in GoogleTagManager 7

Same name and namespace in other branches
  1. 7.2 includes/info.inc \_google_tag_help()

Implements hook_help().

1 call to _google_tag_help()
google_tag_help in ./google_tag.module
Implements hook_help().

File

includes/info.inc, line 13
Provides info-type hook implementations that are infrequently called.

Code

function _google_tag_help($path, $arg) {
  switch ($path) {
    case 'admin/help#google_tag':
    case 'admin/config/system/google_tag':
      $args = array(
        '@path' => 'https://tagmanager.google.com/',
      );
      return t('<a href="@path">Google Tag Manager</a> is a free service (registration required) to manage the insertion of tags for capturing website analytics.', $args);
  }
}