You are here

public function CheckoutPanePluginInterface::review in Ubercart 8.4

Returns the review contents of a checkout pane.

Parameters

\Drupal\uc_order\OrderInterface $order: The order that is being processed.

Return value

array A checkout review array. Each item contains contains "title" and "data" keys which have HTML to be displayed on the checkout review page.

6 methods override CheckoutPanePluginInterface::review()
AddressPaneBase::review in uc_cart/src/Plugin/Ubercart/CheckoutPane/AddressPaneBase.php
Returns the review contents of a checkout pane.
CartPane::review in uc_cart/src/Plugin/Ubercart/CheckoutPane/CartPane.php
Returns the review contents of a checkout pane.
CustomerInfoPane::review in uc_cart/src/Plugin/Ubercart/CheckoutPane/CustomerInfoPane.php
Returns the review contents of a checkout pane.
OrderCommentsPane::review in uc_cart/src/Plugin/Ubercart/CheckoutPane/OrderCommentsPane.php
Returns the review contents of a checkout pane.
PaymentMethodPane::review in payment/uc_payment/src/Plugin/Ubercart/CheckoutPane/PaymentMethodPane.php
Returns the review contents of a checkout pane.

... See full list

File

uc_cart/src/CheckoutPanePluginInterface.php, line 73

Class

CheckoutPanePluginInterface
Defines an interface for checkout pane plugins.

Namespace

Drupal\uc_cart

Code

public function review(OrderInterface $order);