You are here

public function OrderFields::getWrapperElement in Commerce Checkout Order Fields 8

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 CheckoutPaneBase::getWrapperElement

File

src/Plugin/Commerce/CheckoutPane/OrderFields.php, line 89

Class

OrderFields
Exposes the "Checkout" form view mode during checkout.

Namespace

Drupal\commerce_checkout_order_fields\Plugin\Commerce\CheckoutPane

Code

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