Table of Contents
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 hook is located in /fluentform/app/Services/Integrations/GlobalNotificationManager.php