You are here

function contact_save_field_extra_fields in Contact Save 7

Implements hook_field_extra_fields().

File

./contact_save.module, line 227
Contact save module logic.

Code

function contact_save_field_extra_fields() {
  $fields['user']['user'] = array(
    'display' => array(
      'contact_save' => array(
        'label' => t('Site contact form messages'),
        'description' => t('Saved site contact form messages view element.'),
        'weight' => 10,
      ),
    ),
  );
  return $fields;
}