You are here

function google_adwords_field_info in Google AdWords Conversion Tracking 7

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

Implements hook_field_info().

File

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

Code

function google_adwords_field_info() {
  return array(
    'google_adwords_tracking' => array(
      'label' => 'Google Adwords Field',
      'description' => t('This field stores Google Adwords conversion tracking parameter.'),
      'default_widget' => 'text_textfield',
      'default_formatter' => 'default',
      'property_type' => 'text',
    ),
  );
}