public function CheckoutPanePluginBase::process in Ubercart 8.4
Processes 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
bool TRUE if the pane is valid, FALSE otherwise.
Overrides CheckoutPanePluginInterface::process
5 methods override CheckoutPanePluginBase::process()
- AddressPaneBase::process in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ AddressPaneBase.php - Processes a checkout pane.
- CustomerInfoPane::process in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ CustomerInfoPane.php - Processes a checkout pane.
- OrderCommentsPane::process in uc_cart/
src/ Plugin/ Ubercart/ CheckoutPane/ OrderCommentsPane.php - Processes a checkout pane.
- PaymentMethodPane::process in payment/
uc_payment/ src/ Plugin/ Ubercart/ CheckoutPane/ PaymentMethodPane.php - Processes a checkout pane.
- QuotePane::process in shipping/
uc_quote/ src/ Plugin/ Ubercart/ CheckoutPane/ QuotePane.php - Processes a checkout pane.
File
- uc_cart/
src/ CheckoutPanePluginBase.php, line 93
Class
- CheckoutPanePluginBase
- Defines a base checkout pane plugin implementation.
Namespace
Drupal\uc_cartCode
public function process(OrderInterface $order, array $form, FormStateInterface $form_state) {
return TRUE;
}