function uc_payment_uc_order_can_delete in Ubercart 8.4
Implements hook_uc_order_can_delete().
File
- payment/
uc_payment/ uc_payment.module, line 238 - Defines the payment API that lets payment modules interact with Ubercart.
Code
function uc_payment_uc_order_can_delete(OrderInterface $order) {
if (uc_payment_load_payments($order
->id())) {
return FALSE;
}
}