You are here

public function CheckoutPaneBase::buildConfigurationSummary in Commerce Core 8.2

Builds a summary of the pane configuration.

Complements the methods provided by PluginFormInterface, allowing the checkout flow form to provide a summary of pane configuration.

Return value

string An HTML summary of the pane configuration.

Overrides CheckoutPaneInterface::buildConfigurationSummary

5 methods override CheckoutPaneBase::buildConfigurationSummary()
ContactInformation::buildConfigurationSummary in modules/checkout/src/Plugin/Commerce/CheckoutPane/ContactInformation.php
Builds a summary of the pane configuration.
CouponRedemption::buildConfigurationSummary in modules/promotion/src/Plugin/Commerce/CheckoutPane/CouponRedemption.php
Builds a summary of the pane configuration.
Login::buildConfigurationSummary in modules/checkout/src/Plugin/Commerce/CheckoutPane/Login.php
Builds a summary of the pane configuration.
OrderSummary::buildConfigurationSummary in modules/checkout/src/Plugin/Commerce/CheckoutPane/OrderSummary.php
Builds a summary of the pane configuration.
PaymentProcess::buildConfigurationSummary in modules/payment/src/Plugin/Commerce/CheckoutPane/PaymentProcess.php
Builds a summary of the pane configuration.

File

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

Class

CheckoutPaneBase
Provides the base checkout pane class.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public function buildConfigurationSummary() {
  return '';
}