You are here

function matomo_field_extra_fields in Matomo Analytics 7.2

Implements hook_field_extra_fields().

File

./matomo.module, line 390
Drupal Module: Matomo

Code

function matomo_field_extra_fields() {
  $extra['user']['user']['form']['matomo'] = array(
    'label' => t('Matomo configuration'),
    'description' => t('Matomo module form element.'),
    'weight' => 3,
  );
  return $extra;
}