You are here

commerce_customer_profile_dummy_type.module in Commerce Core 7

Helper module for the customer profile tests.

File

modules/customer/tests/commerce_customer_profile_dummy_type.module
View source
<?php

/**
 * @file
 * Helper module for the customer profile tests.
 */

/**
 * Implements hook_commerce_customer_profile_type_info().
 */
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;
}