You are here

function commerce_customer_ui_form_entity_translation_admin_form_alter in Commerce Core 7

Implements hook_form_FORM_ID_alter().

File

modules/customer/commerce_customer_ui.module, line 382

Code

function commerce_customer_ui_form_entity_translation_admin_form_alter(&$form, &$form_state, $form_id) {

  // Hide the commerce_customer_profile option from entity translation.
  unset($form['entity_translation_entity_types']['#options']['commerce_customer_profile']);
}