Table of Contents
Description #
This action fires before saving response note in the form entries.
/*
* Source Action
*/
do_action('fluentform_new_response_note_added', $insertId, $added_note);
Usage #
add_action('fluentform_loaded', function ($insertId, $added_note)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Parameter #
- $insertId (int) Insert ID
- $added_note (string) Note
Source Code #
This hook is located in /fluentform/app/Modules/Entries/Entries.php