You are here

function commerce_customer_ui_admin_menu_map in Commerce Core 7

Implements hook_admin_menu_map().

File

modules/customer/commerce_customer_ui.module, line 164

Code

function commerce_customer_ui_admin_menu_map() {

  // Add awareness to the administration menu of the various profile types so
  // they are included in the dropdown menu.
  $map['admin/commerce/customer-profiles/types/%'] = array(
    'parent' => 'admin/commerce/customer-profiles/types',
    'arguments' => array(
      array(
        '%' => array_keys(commerce_customer_profile_types()),
      ),
    ),
  );
  return $map;
}