View Categories

fluentform/global_notify_completed

Description #

This action fires after completing form integration data pushing process.

/*
* Source Action
*/
do_action('fluentform/global_notify_completed', $insertId, $form);

Usage #

add_action('fluentform/global_notify_completed', function ($insertId, $form)
{
   // Do your stuffs here
}, 10, 2);

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

Parameters #

  • $insertId (int) Insert Id
  • $form (object) Form Object

Source Code #

This action is located in fluentform/app/Services/Integrations/GlobalNotificationManager.php, fluentform/app/Services/WPAsync/FluentFormAsyncRequest.php