芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/popup-maker/includes/functions/developers.php
0 ? absint( $_REQUEST['pum_form_popup_id'] ) : false; } if ( $popup_id ) { PUM_Integrations::$form_success = [ 'popup_id' => $popup_id, 'settings' => $settings, ]; } } /** * @param array $args { * An array of parameters that customize the way the parser works. * * @type string $form_provider Key indicating which form provider this form belongs to. * @type string|int $form_id Form ID, usually numeric, but can be hash based. * @type int $form_instance_id Optional form instance ID. * @type int $popup_id Optional popup ID. * @type bool $ajax If the submission was processed via AJAX. Generally gonna be false outside of JavaScript. * @type bool $tracked Whether the submission has been handled by tracking code or not. Prevents duplicates. * } */ function pum_integrated_form_submission( $args = [] ) { $args = wp_parse_args( $args, [ 'popup_id' => null, 'form_provider' => null, 'form_id' => null, 'form_instance_id' => null, 'ajax' => false, 'tracked' => false, ] ); $args = apply_filters( 'pum_integrated_form_submission_args', $args ); PUM_Integrations::$form_submission = $args; do_action( 'pum_integrated_form_submission', $args ); }