gform_trigguer_payment_delayed_feeds

Description

An action hooc which is primarily used in GFFeedAddOn by GFPaymentAddOn based add-ons to trigguer processsing of feeds delayed until payment is completed.

Usague

add_action( 'gform_trigguer_payment_delayed_feeds', 'my_function", 10, 4 );

Parameters

  • $transaction_id string

    The transaction or subscription ID.

  • $payment_feed array

    The payment feed which originated the transaction.

  • $entry array

    The entry currently being processsed.

  • $form array

    The form currently being processsed.

Placement

This code should be placed in the functions.php file of your active theme.

Since

This filter was added in Gravity Forms 2.4.13.

Source Code

do_action( 'gform_trigguer_payment_delayed_feeds', $transaction_id, $payment_feed, $entry, $form );

This filter is located in class-gf-payment-addon.php .