You are here

public function CheckoutPaneInterface::buildPaneForm in Commerce Core 8.2

Builds the pane form.

Parameters

array $pane_form: The pane form, containing the following basic properties:

  • #parents: Identifies the position of the pane form in the overall parent form, and identifies the location where the field values are placed within $form_state->getValues().

\Drupal\Core\Form\FormStateInterface $form_state: The form state of the parent form.

array $complete_form: The complete form structure.

11 methods override CheckoutPaneInterface::buildPaneForm()
BillingInformation::buildPaneForm in modules/checkout/src/Plugin/Commerce/CheckoutPane/BillingInformation.php
Builds the pane form.
CheckoutTest::buildPaneForm in modules/checkout/tests/modules/commerce_checkout_test/src/Plugin/Commerce/CheckoutPane/CheckoutTest.php
Builds the pane form.
CompletionMessage::buildPaneForm in modules/checkout/src/Plugin/Commerce/CheckoutPane/CompletionMessage.php
Builds the pane form.
CompletionRegister::buildPaneForm in modules/checkout/src/Plugin/Commerce/CheckoutPane/CompletionRegister.php
Builds the pane form.
ContactInformation::buildPaneForm in modules/checkout/src/Plugin/Commerce/CheckoutPane/ContactInformation.php
Builds the pane form.

... See full list

File

modules/checkout/src/Plugin/Commerce/CheckoutPane/CheckoutPaneInterface.php, line 153

Class

CheckoutPaneInterface
Defines the interface for checkout panes.

Namespace

Drupal\commerce_checkout\Plugin\Commerce\CheckoutPane

Code

public function buildPaneForm(array $pane_form, FormStateInterface $form_state, array &$complete_form);