function simplenews_field_extra_fields in Simplenews 7
Same name and namespace in other branches
- 7.2 simplenews.module \simplenews_field_extra_fields()
Implements hook_field_extra_fields().
File
- ./
simplenews.module, line 2594 - Simplenews node handling, sent email, newsletter block and general hooks
Code
function simplenews_field_extra_fields() {
$return['user']['user'] = array(
'display' => array(
'simplenews' => array(
'label' => 'Newsletters',
'description' => t('Newsletter subscriptions of the user'),
'weight' => 5,
),
),
);
return $return;
}