Server IP : 104.21.38.3 / Your IP : 172.70.147.186 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 Options Utility * * @package PUM * @copyright Copyright (c) 2023, Code Atlantic LLC */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Get all forum options. * * @return mixed */ function pum_get_options() { return PUM_Utils_Options::get_all(); } /** * Get a forum option. * * @param string $key * @param mixed $default * * @return mixed */ function pum_get_option( $key, $default = false ) { return PUM_Utils_Options::get( $key, $default ); } /** * Update a forum option. * * @param string $key * @param bool $value * * @return bool */ function pum_update_option( $key = '', $value = false ) { return PUM_Utils_Options::update( $key, $value ); } /** * Merge array of new option values into the existing options array. * * @param array $new_options * * @return bool */ function pum_merge_options( $new_options = [] ) { return PUM_Utils_Options::merge( $new_options ); } /** * Delete a forum option * * @param string $key * * @return bool */ function pum_delete_option( $key = '' ) { return PUM_Utils_Options::delete( $key ); } /** * Delete a forum option * * @param array $keys * * @return bool */ function pum_delete_options( $keys = [] ) { return PUM_Utils_Options::delete( $keys ); } /** * Remap old option keys. * * @param array $remap_array * * @return bool */ function pum_remap_options( $remap_array = [] ) { return PUM_Utils_Options::remap_keys( $remap_array ); }