function gdpr_consent_field_formatter_info in General Data Protection Regulation 7
Implements hook_field_formatter_info().
File
- modules/
gdpr_consent/ gdpr_consent.module, line 504 - Contains hook implementations and shared functions.
Code
function gdpr_consent_field_formatter_info() {
return array(
'gdpr_consent' => array(
'label' => t('GDPR user consent formatter'),
'field types' => array(
'gdpr_user_consent',
),
),
);
}