iphorm_pre_validate

This documentation page is for Quform version 1 and may not be applicable for Quform 2 click here to visit the documentation for Quform 2.

This hook is run while the form is being processed, but before the form values have been validated.

iphorm_pre_validate

This hook is run for all forms.

Example

1
2
3
4
5
function my_pre_validate($form)
{
    // Custom code
}
add_action('iphorm_pre_validate', 'my_pre_validate');
function my_pre_validate($form)
{
    // Custom code
}
add_action('iphorm_pre_validate', 'my_pre_validate');

Parameters

  • $form – the iPhorm instance

Accessing form data

See Getting form values

iphorm_pre_validate_X

This hook is run for a single form, replace X with the form ID.

Example

1
2
3
4
5
function my_pre_validate($form)
{
    // Custom code
}
add_action('iphorm_pre_validate_1', 'my_pre_validate');
function my_pre_validate($form)
{
    // Custom code
}
add_action('iphorm_pre_validate_1', 'my_pre_validate');

Parameters

  • $form – the iPhorm instance

Accessing form data

See Getting form values

Be inspired. © 2022 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy