You are here

function commerce_avatax_commerce_inline_form_customer_profile_alter in Drupal Commerce Connector for AvaTax 8

Implements hook_commerce_inline_form_alter().

File

./commerce_avatax.module, line 90
Provides module functionality.

Code

function commerce_avatax_commerce_inline_form_customer_profile_alter(array &$inline_form, FormStateInterface $form_state) {
  $customer_profile_alter = \Drupal::service('commerce_avatax.customer_profile_alter');
  if ($customer_profile_alter
    ->applies($inline_form, $form_state)) {
    $customer_profile_alter
      ->alter($inline_form, $form_state);
  }
}