You are here

function commerce_customer_field_formatter_info in Commerce Core 7

Implements hook_field_formatter_info().

File

modules/customer/commerce_customer.module, line 862
Defines the customer profile entity and API functions to manage customers and interact with them.

Code

function commerce_customer_field_formatter_info() {
  return array(
    'commerce_customer_profile_reference_display' => array(
      'label' => t('Customer profile display'),
      'description' => t('Display the customer profile.'),
      'field types' => array(
        'commerce_customer_profile_reference',
      ),
    ),
  );
}