You are here

function piwik_field_extra_fields in Piwik Web Analytics 7.2

Implements hook_field_extra_fields().

File

./piwik.module, line 392
Drupal Module: Piwik

Code

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