function google_adwords_field_info in Google AdWords Conversion Tracking 7.2
Same name and namespace in other branches
- 7 google_adwords.module \google_adwords_field_info()
Implements hook_field_info().
Provides the description of the field.
File
- ./
google_adwords.module, line 13 - Google Adwords Conversion Tracking Module.
Code
function google_adwords_field_info() {
return array(
// We name our field as the associative name of the array.
'google_adwords_tracking' => array(
'label' => t('Google Adwords'),
'description' => t('Add the Google Adwords Trackin Conversion info for this entity.'),
'settings' => array(),
'instance_settings' => array(),
'default_widget' => 'google_adwords_text',
'default_formatter' => 'google_adwords_default',
),
);
}