gform_trigger_payment_delayed_feeds

Description

An action hook which is primarily used in GFFeedAddOn by GFPaymentAddOn based add-ons to trigger processing of feeds delayed until payment is completed.

Usage

add_action( 'gform_trigger_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 processed.

  • $form array

    The form currently being processed.

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_trigger_payment_delayed_feeds', $transaction_id, $payment_feed, $entry, $form );

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