You are here

function _google_tag_variable_group_info in GoogleTagManager 7

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

Implements hook_variable_group_info().

1 call to _google_tag_variable_group_info()
google_tag_variable_group_info in ./google_tag.module
Implements hook_variable_group_info().

File

includes/variable.inc, line 13
Contains the variable definitions.

Code

function _google_tag_variable_group_info() {
  $groups['google_tag'] = array(
    'title' => t('Google Tag Manager'),
    'description' => t('Allows your website analytics to be managed using Google Tag Manager.'),
    'access' => 'administer google tag manager',
    'path' => array(
      'admin/config/system/google_tag',
    ),
  );
  return $groups;
}