You are here

public static function PaymentInformation::ajaxRefresh in Commerce Core 8.2

Ajax callback.

File

modules/payment/src/Plugin/Commerce/CheckoutPane/PaymentInformation.php, line 309

Class

PaymentInformation
Provides the payment information pane.

Namespace

Drupal\commerce_payment\Plugin\Commerce\CheckoutPane

Code

public static function ajaxRefresh(array $form, FormStateInterface $form_state) {
  $parents = $form_state
    ->getTriggeringElement()['#parents'];
  array_pop($parents);
  return NestedArray::getValue($form, $parents);
}