Description #
This action runs after completing an integration process.
/*
* Source Action
*/
do_action('fluentform/integration_action_result',$feed, $status, $note);
Usage #
add_action('fluentform/integration_action_result', function ($feed, $status, $note = '')
{
// Do your stuffs here
}, 10, 0);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $feed (array) Current Feed
- $status (string) Status
- $note (string) Note
Source Code #
This hook is located in integrations bootstrap files such as fluentformpro/src/Integrations/**/Bootstrap.php