File "response.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/contact-form-7/modules/response.php
File size: 350 bytes
MIME-type: --
Charset: utf-8
<?php
/**
** A base module for [response]
**/
/* Shortcode handler */
wpcf7_add_shortcode( 'response', 'wpcf7_response_shortcode_handler' );
function wpcf7_response_shortcode_handler( $tag ) {
if ( $contact_form = wpcf7_get_current_contact_form() ) {
$contact_form->responses_count += 1;
return $contact_form->form_response_output();
}
}
?>