Server IP : 172.67.216.182 / Your IP : 172.70.142.24 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/ |
Upload File : |
<?php /** * Deprecated classes * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * PopMake_License Class * * @deprecated 1.5.0 * * Use PUM_Extension_License instead. */ class PopMake_License extends PUM_Extension_License {} /** * PopupMaker_Plugin_Updater * * @deprecated 1.5.0 Use PUM_Extension_Updater. */ class PopupMaker_Plugin_Updater extends PUM_Extension_Updater {} /** * Popmake_Cron Class * * This class handles scheduled events * * @since 1.3.0 * @deprecated 1.8.0 */ class Popmake_Cron extends PUM_Utils_Cron {} /** * Class PUM_Popup_Query * * @deprecated 1.8.0 */ class PUM_Popup_Query { /** * The args to pass to the pum_get_popups() query * * @var array * @access public */ public $args = []; /** * Default query arguments. * * Not all of these are valid arguments that can be passed to WP_Query. The ones that are not, are modified before * the query is run to convert them to the proper syntax. * * @param array $args The array of arguments that can be passed in and used for setting up this popup query. */ public function __construct( $args = [] ) { $this->args = $args; } /** * Retrieve popups. * * The query can be modified in two ways; either the action before the * query is run, or the filter on the arguments (existing mainly for backwards * compatibility). * * @access public * @return object */ public function get_popups() { return pum_get_popups( $this->args ); } } /** * Class PUM * * @deprecated 1.8.0 - Don't use this. Use Popup_Maker instead. */ class PUM { const DB_VER = null; const VER = null; static $DB_VER = null; static $VER = null; }