You are here

function google_adwords_menu in Google AdWords Conversion Tracking 7

Same name and namespace in other branches
  1. 6 google_adwords.module \google_adwords_menu()
  2. 7.2 google_adwords.module \google_adwords_menu()

Implements hook_menu().

File

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

Code

function google_adwords_menu() {
  $items['admin/config/system/google_adwords'] = array(
    'title' => t('Google AdWords'),
    'description' => t('Google AdWords Settings page.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'google_adwords_admin_settings',
    ),
    'access arguments' => array(
      GOOGLE_ADWORDS_ADMIN_PERM,
    ),
    'file' => 'google_adwords.admin.inc',
  );
  return $items;
}