You are here

function _google_tag_menu in GoogleTagManager 7

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

Implements hook_menu().

1 call to _google_tag_menu()
google_tag_menu in ./google_tag.module
Implements hook_menu().

File

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

Code

function _google_tag_menu() {
  $items['admin/config/system/google_tag'] = array(
    'title' => 'Google Tag Manager',
    'description' => 'Configure the website integration with GTM and the resultant capturing of website analytics.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'google_tag_settings_form',
    ),
    'access arguments' => array(
      'administer google tag manager',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'includes/admin.inc',
  );
  return $items;
}