You are here

function civicrm_entity_profile_field_formatter_info in CiviCRM Entity 7.2

Implements hook_field_formatter_info().

File

modules/civicrm_entity_profile/civicrm_entity_profile.module, line 497

Code

function civicrm_entity_profile_field_formatter_info() {
  return array(
    'civicrm_entity_profile_field_default_formatter' => array(
      // Machine name of the formatter
      'label' => t('List Profiles'),
      'field types' => array(
        'civicrm_entity_profile_field',
      ),
      'settings' => array(
        // Array of the settings we'll create
        'link_to_profile' => 0,
      ),
    ),
  );
}