You are here

public function CheckoutPaneBase::getWrapperElement in Commerce Core 8.2

Gets the pane wrapper element.

Used when rendering the pane's form. E.g: 'container', 'fieldset'. Defaults to 'container'.

Return value

string The pane wrapper element.

Overrides CheckoutPaneInterface::getWrapperElement

File

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

Class

CheckoutPaneBase
Provides the base checkout pane class.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

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