You are here

function commerce_customer_commerce_customer_profile_type_info in Commerce Core 7

Implements hook_commerce_customer_profile_type_info().

File

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

Code

function commerce_customer_commerce_customer_profile_type_info() {
  $profile_types = array();
  $profile_types['billing'] = array(
    'type' => 'billing',
    'name' => t('Billing information'),
    'description' => t('The profile used to collect billing information on the checkout and order forms.'),
    'help' => '',
  );
  return $profile_types;
}