You are here

function _google_tag_permission in GoogleTagManager 7

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

Implements hook_permission().

1 call to _google_tag_permission()
google_tag_permission in ./google_tag.module
Implements hook_permission().

File

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

Code

function _google_tag_permission() {
  return array(
    'administer google tag manager' => array(
      'title' => t('Administer Google Tag Manager'),
      'description' => t('Configure the website integration with Google Tag Manager.'),
    ),
  );
}