Table of Contents
Description #
This action runs before deleting the partial entries.
/*
* Source Action
*/
do_action('fluentform_before_partial_entry_deleted', $entryId, $formId);
Usage #
add_action('fluentform_before_partial_entry_deleted', function ( $entryId, $formId)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Paramertes #
- $entryId (array) Entry Data
- $formId (int) Form ID
Source Code #
This hook is located in /fluentformpro/src/src/classes/StepFormEntries.php