Description #
This filter is used during data logging. You can use this filter to access the logs.
apply_filters('fluentform/api_all_logs', $logs);
Usage #
add_filter('fluentform/api_all_logs', function($logs){
return $logs;
}, 10, 1);
Parameters #
- $logs (array) Logs
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\App\Modules\Logger\DataLogger -> getApiLogs()