Description #
This filter is used during form export. Using this filter you hook into export data and change it.
apply_filters('fluentform/export_data', $data, $form, $exportData, $inputLabels);
Usage #
add_filter('fluentform/export_data', function($data, $form, $exportData, $inputLabels) {
return $data;
}, 10, 4);
Parameters #
- $data (array) Default Values
- $form (object) Form Object
- $exportData (array) Export Data
- $inputLabels (array) Input Labels
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Services\Submission -> index($args)