function googleanalytics_field_extra_fields in Google Analytics 7.2
Same name and namespace in other branches
- 7 googleanalytics.module \googleanalytics_field_extra_fields()
Implements hook_field_extra_fields().
File
- ./
googleanalytics.module, line 398 - Drupal Module: Google Analytics
Code
function googleanalytics_field_extra_fields() {
$extra['user']['user']['form']['googleanalytics'] = array(
'label' => t('Google Analytics configuration'),
'description' => t('Google Analytics module form element.'),
'weight' => 3,
);
return $extra;
}