Server IP : 104.21.38.3 / Your IP : 108.162.227.137 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/utils/ |
Upload File : |
<?php /** * Functions for Upgrades Utility * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Adds an upgrade action to the completed upgrades array * * @since 1.7.0 * * @see PUM_Utils_Upgrades::set_upgrade_complete * * @param string $upgrade_id The action to add to the competed upgrades array * * @return bool If the function was successfully added */ function pum_set_upgrade_complete( $upgrade_id = '' ) { return PUM_Utils_Upgrades::instance()->set_upgrade_complete( $upgrade_id ); } /** * Get's the array of completed upgrade actions * * @since 1.7.0 * * @return array The array of completed upgrades */ function pum_get_completed_upgrades() { return PUM_Utils_Upgrades::instance()->get_completed_upgrades(); } /** * Check if the upgrade routine has been run for a specific action * * @since 1.7.0 * * @param string $upgrade_id The upgrade action to check completion for * * @return bool If the action has been added to the completed actions array */ function pum_has_completed_upgrade( $upgrade_id = '' ) { return PUM_Utils_Upgrades::instance()->has_completed_upgrade( $upgrade_id ); } /** * Clean up postmeta by removing all keys from the given post_id. * * @param int $post_id * @param array $keys_to_delete */ function pum_cleanup_post_meta_keys( $post_id = 0, $keys_to_delete = [] ) { /** * Clean up automatically. */ if ( ! empty( $keys_to_delete ) ) { global $wpdb; $keys_to_delete = array_map( 'esc_sql', (array) $keys_to_delete ); $meta_keys = implode( "','", $keys_to_delete ); $query = $wpdb->prepare( "DELETE FROM `$wpdb->postmeta` WHERE `post_id` = %d AND `meta_key` IN ('{$meta_keys}')", $post_id ); $wpdb->query( $query ); wp_cache_delete( $post_id, 'post_meta' ); } }