You are here

function google_adwords_permission in Google AdWords Conversion Tracking 7

Same name and namespace in other branches
  1. 7.2 google_adwords.module \google_adwords_permission()

Implementation of hook_permission().

File

./google_adwords.module, line 15
Google Adwords Conversion Tracking Module

Code

function google_adwords_permission() {
  return array(
    GOOGLE_ADWORDS_ADMIN_PERM => array(
      'title' => t('Administer google adwords module.'),
      'description' => t('Perform administration tasks for google adwords.'),
    ),
    GOOGLE_ADWORDS_TRACK_PERM => array(
      'title' => t('Track role with google adwords.'),
      'description' => t('Selected roles will have the google adwords code displayed if available.'),
    ),
  );
}