function piwik_entity_extra_field_info in Piwik Web Analytics 8
Implements hook_entity_extra_field_info().
File
- ./
piwik.module, line 358 - Drupal Module: Piwik.
Code
function piwik_entity_extra_field_info() {
$extra['user']['user']['form']['piwik'] = [
'label' => t('Piwik settings'),
'description' => t('Piwik module form element.'),
'weight' => 3,
];
return $extra;
}