function commerce_customer_theme in Commerce Core 7
Implements hook_theme().
File
- modules/
customer/ commerce_customer.module, line 377 - Defines the customer profile entity and API functions to manage customers and interact with them.
Code
function commerce_customer_theme() {
return array(
'commerce_customer_profile' => array(
'variables' => array(
'profile' => NULL,
'view_mode' => NULL,
),
),
);
}