Server IP : 104.21.38.3 / Your IP : 172.69.165.15 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/admin/ |
Upload File : |
<?php /** * Functions for General Admin * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Gets the current admin screen post type. * * @return bool|string */ function pum_typenow() { if ( ! empty( $GLOBALS['typenow'] ) ) { return $GLOBALS['typenow']; } // when editing pages, $typenow isn't set until later! // try to pick it up from the query string if ( ! empty( $_GET['post_type'] ) ) { return sanitize_text_field( $_GET['post_type'] ); } elseif ( ! empty( $_GET['post'] ) && $_GET['post'] > 0 ) { $post = get_post( $_GET['post'] ); } elseif ( ! empty( $_POST['post_ID'] ) && $_POST['post_ID'] > 0 ) { $post = get_post( $_POST['post_ID'] ); } return isset( $post ) && is_object( $post ) && $post->ID > 0 ? $post->post_type : false; } /** * Generates an Popup Maker admin URL based on the given type. * * @since 1.7.0 * * @param string $type Optional. Type of admin URL. Accepts 'tools', 'settings'. Default empty * @param array $query_args Optional. Query arguments to append to the admin URL. Default empty array. * * @return string Constructed admin URL. */ function pum_admin_url( $type = '', $query_args = [] ) { $page = ''; $whitelist = PUM_Admin_Pages::$pages; if ( in_array( $type, $whitelist, true ) ) { $page = "pum-{$type}"; } $admin_query_args = array_merge( [ 'page' => $page ], $query_args ); $url = add_query_arg( $admin_query_args, admin_url( 'edit.php?post_type=popup' ) ); /** * Filters the Popup Maker admin URL. * * @param string $url Admin URL. * @param string $type Admin URL type. * @param array $query_args Query arguments originally passed to pum_admin_url(). */ return apply_filters( 'pum_admin_url', $url, $type, $query_args ); } /** * @return array */ function pum_support_assist_args() { return [ // Forces the dashboard to force logout any users. 'nouser' => true, 'fname' => wp_get_current_user()->first_name, 'lname' => wp_get_current_user()->last_name, 'email' => wp_get_current_user()->user_email, 'url' => home_url(), ]; }