You are here

public function CheckoutPaneBase::getDisplayLabel in Commerce Core 8.2

Gets the pane display label.

This label is customer-facing. Shown as the title of the pane form if the wrapper_element is 'fieldset'.

Return value

string The pane display label.

Overrides CheckoutPaneInterface::getDisplayLabel

File

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

Class

CheckoutPaneBase
Provides the base checkout pane class.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public function getDisplayLabel() {
  return $this->pluginDefinition['display_label'];
}