You are here

function commerce_customer_profile_type_title in Commerce Core 7

Title callback: return the human-readable customer profile type name.

File

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

Code

function commerce_customer_profile_type_title($profile_type) {
  return $profile_type['name'];
}