View Categories

fluentform/submission_note_stored

Description #

This action fires before saving the response note in the form entries.

/*
* Source Action
*/
do_action('fluentform/submission_note_stored', $insertId, $added_note);

Usage #

add_action('fluentform/submission_note_stored', 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\Services\Submission\SubmissionService\SubmissionService -> storeNote($submissionId, $attributes = [])