wpcf7_refill_response хук-фильтр . CF7 1.0
Использование
add_filter( 'wpcf7_refill_response', 'filter_function_name_162' ); function filter_function_name_162( $array ){ // filter... return $array; }
- $array
- -
Где вызывается хук
wpcf7_refill_response
contact-form-7/includes/rest-api.php 382
$response = apply_filters( 'wpcf7_refill_response', array() );
Где используется хук в ядре Contact Form 7
contact-form-7/modules/quiz.php 117
add_filter( 'wpcf7_refill_response', 'wpcf7_quiz_ajax_refill', 10, 1 );
contact-form-7/modules/really-simple-captcha.php 187
add_filter( 'wpcf7_refill_response', 'wpcf7_captcha_ajax_refill', 10, 1 );