Description #
This action runs after a successful refund on every payment method. You can hook into this and get the refund data.
/*
* Source Action
*/
do_action('fluentform/payment_refunded', $refund, $refund->form_id);
Usage #
add_action('fluentform/payment_refunded', function ($refund, $form_id)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $refund (array) Refund Data
- $form_id (int) Form ID
Source Code #
This hook is located in /fluentformpro/src/Payments/PaymentMethods/BaseProcessor.php