public function CheckoutPanePluginInterface::view in Ubercart 8.4
Returns the contents of a checkout pane.
Parameters
\Drupal\uc_order\OrderInterface $order: The order that is being processed.
array $form: The checkout form array.
\Drupal\Core\Form\FormStateInterface $form_state: The checkout form state array.
Return value
array A form array, with an optional '#description' key to provide help text for the pane.
6 methods override CheckoutPanePluginInterface::view()
- AddressPaneBase::view in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ AddressPaneBase.php - Returns the contents of a checkout pane.
- CartPane::view in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ CartPane.php - Returns the contents of a checkout pane.
- CustomerInfoPane::view in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ CustomerInfoPane.php - Returns the contents of a checkout pane.
- OrderCommentsPane::view in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ OrderCommentsPane.php - Returns the contents of a checkout pane.
- PaymentMethodPane::view in payment/
uc_payment/ src/ Plugin/ Ubercart/ CheckoutPane/ PaymentMethodPane.php - Returns the contents of a checkout pane.
File
- uc_cart/
src/ CheckoutPanePluginInterface.php, line 46
Class
- CheckoutPanePluginInterface
- Defines an interface for checkout pane plugins.
Namespace
Drupal\uc_cartCode
public function view(OrderInterface $order, array $form, FormStateInterface $form_state);