function google_adwords_menu in Google AdWords Conversion Tracking 6
Same name and namespace in other branches
- 7.2 google_adwords.module \google_adwords_menu()
- 7 google_adwords.module \google_adwords_menu()
File
- ./
google_adwords.module, line 15
Code
function google_adwords_menu() {
$items = array();
$items['admin/settings/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;
}