You are here

function matomo_entity_extra_field_info in Matomo Analytics 8

Implements hook_entity_extra_field_info().

File

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

Code

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