You are here

function commerce_customer_profile_dummy_type_commerce_customer_profile_type_info in Commerce Core 7

Implements hook_commerce_customer_profile_type_info().

File

modules/customer/tests/commerce_customer_profile_dummy_type.module, line 11
Helper module for the customer profile tests.

Code

function commerce_customer_profile_dummy_type_commerce_customer_profile_type_info() {
  $profile_types = array();
  $profile_types['dummy'] = array(
    'type' => 'dummy',
    'name' => t('Dummy profile type'),
    'description' => t('Dummy profile type used for testing purposes.'),
    'help' => '',
  );
  return $profile_types;
}