Server IP : 172.67.216.182 / Your IP : 172.70.147.3 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/popup-maker/includes/functions/ |
Upload File : |
<?php /** * Functions for developers * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Call this with a popup ID and it will trigger the * JS based forms.success function with your settings * on the next page load. * * @since 1.7.0 * * @param int $popup_id * @param array $settings */ function pum_trigger_popup_form_success( $popup_id = null, $settings = [] ) { if ( ! isset( $popup_id ) ) { $popup_id = isset( $_REQUEST['pum_form_popup_id'] ) && absint( $_REQUEST['pum_form_popup_id'] ) > 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 ); }