Resumo de IA
Descrição
The wpforms_process_validate_phone action fires validation on the Phone form field when the form is submitted.
Parâmetros
- $field_id
- (int) ID do campo.
- $field_submit
- (array) Valor original bruto/não sanitizado do campo enviado para o campo.
- $form_data
- (array) Configurações/dados do formulário processados, preparados para uso posterior.
Fonte
wpforms/includes/class-process.php
Mais Informações
The action is applied to an array for Phone form field. This function can be used for all form fields do_action( "wpforms_process_validate_{$field_type}", $field_id, $field_submit, $form_data ).
É importante notar que os valores dos campos não são higienizados até mais tarde no processamento, em wpforms_process_format_{$field_type}.o
Exemplos
In this example shown below, the function will check the Phone form field for toll-free phone numbers.
/*
* Check the phone field for toll-free numbers.
*
* @link https://wpforms.com/developers/wpforms_process_validate_phone/
*
* @param int $field_id Field ID.
* @param array $field_submit Unsanitized field value submitted for the field.
* @param array $form_data Form data and settings.
*/
function my_wpforms_process_validate_phone( $field_id, $field_submit, $form_data ) {
$prefixes = [ '8', '+8' ];
$regexp = implode( '|', $prefixes );
if ( preg_match( '/^[' . $regexp . ']/', (string) $field_submit ) ) {
wpforms()->process->errors[ $form_data[ 'id' ] ][ $field_id ] = esc_html__('The number should not start with "', 'wpforms') . implode( '", "', $prefixes ) . '"';
}
}
add_action( 'wpforms_process_validate_phone', 'my_wpforms_process_validate_phone', 10, 3 );