public function StripeReview::buildConfigurationSummary in Commerce Stripe 8
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 CheckoutPaneBase::buildConfigurationSummary
File
- src/
Plugin/ Commerce/ CheckoutPane/ StripeReview.php, line 52
Class
- StripeReview
- Adds payment intent confirmation for Stripe.
Namespace
Drupal\commerce_stripe\Plugin\Commerce\CheckoutPaneCode
public function buildConfigurationSummary() {
return $this
->t('Button id is @id', [
'@id' => $this->configuration['button_id'],
]);
}