You are here

public function CheckoutPaneBase::buildPaneSummary in Commerce Core 8.2

Builds a summary of the pane values.

Important: The review pane shows summaries for both visible and non-visible panes. To skip showing a summary for a non-visible pane, check isVisible() and return an empty array.

Return value

array A render array containing the summary of the pane values.

Overrides CheckoutPaneInterface::buildPaneSummary

3 methods override CheckoutPaneBase::buildPaneSummary()
BillingInformation::buildPaneSummary in modules/checkout/src/Plugin/Commerce/CheckoutPane/BillingInformation.php
Builds a summary of the pane values.
ContactInformation::buildPaneSummary in modules/checkout/src/Plugin/Commerce/CheckoutPane/ContactInformation.php
Builds a summary of the pane values.
PaymentInformation::buildPaneSummary in modules/payment/src/Plugin/Commerce/CheckoutPane/PaymentInformation.php
Builds a summary of the pane values.

File

modules/checkout/src/Plugin/Commerce/CheckoutPane/CheckoutPaneBase.php, line 215

Class

CheckoutPaneBase
Provides the base checkout pane class.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public function buildPaneSummary() {
  return [];
}