function commerce_customer_ui_theme in Commerce Core 7
Implements hook_theme().
File
- modules/
customer/ commerce_customer_ui.module, line 196
Code
function commerce_customer_ui_theme() {
return array(
'customer_profile_add_list' => array(
'variables' => array(
'content' => array(),
),
'file' => 'includes/commerce_customer_ui.profiles.inc',
),
'customer_profile_type_admin_overview' => array(
'variables' => array(
'type' => NULL,
),
'file' => 'includes/commerce_customer_ui.profile_types.inc',
),
'commerce_customer_profile_status' => array(
'variables' => array(
'status' => NULL,
'label' => NULL,
'profile' => NULL,
),
'path' => drupal_get_path('module', 'commerce_customer_ui') . '/theme',
'template' => 'commerce-customer-profile-status',
),
);
}