芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/popup-maker/classes/Abstract/Integration/Form.php
0 ? absint( $_REQUEST['pum_form_popup_id'] ) : false; } /** * Increase the conversion count for popup * * @param int $popup_id The ID for the popup. * @since 1.13.0 */ public function increase_conversion( $popup_id ) { $popup_id = intval( $popup_id ); $popup = pum_get_popup( $popup_id ); $popup->increase_event_count( 'conversion' ); } /** * Returns whether or now we should process any form submissions * * @return bool True if we should process the form submission * @since 1.13.0 */ public function should_process_submission() { if ( wp_doing_ajax() || defined( 'REST_REQUEST' ) ) { return false; } return true; } }