|
/ Documentation /Developer Documentation/Filter Hooks/ srfm_before_fields_processing

srfm_before_fields_processing

Description

Filters the form data immediately before individual fields are processed/validated.

Parameters

  • $form_data (array) – The submitted form data.

Filter Source

PHP
/**
* filter source (Free) inc/form-submit.php 
*/
 $form_data = apply_filters( 'srfm_before_fields_processing', $form_data );

Filter Usage

PHP
add_filter( 'srfm_before_fields_processing', 'my_callback', 10, 1 ); 
function my_callback( $form_data ) { 
return $form_data; 
}

Filter Example

PHP
add_filter( 'srfm_before_fields_processing', 'my_callback', 10, 1 ); 
function my_callback( $form_data ) { 
return $form_data;
 }
Was this doc helpful?
What went wrong?

We don't respond to the article feedback, we use it to improve our support content.

Need help? Contact Support
Table of Contents
Scroll to Top