PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/mytube.pm/wp-content/plugins/comet-cache/src/includes/traits/Plugin/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/mytube.pm/wp-content/plugins/comet-cache/src/includes/traits/Plugin/OptionUtils.php

<?php
namespace WebSharks\CometCache\Traits\Plugin;

use WebSharks\CometCache\Classes;

trait OptionUtils
{
    /**
     * Restore default plugin options.
     *
     * @since 151002 Improving multisite compat.
     *
     * @return array Plugin options after update.
     */
    public function restoreDefaultOptions()
    {
        delete_site_option(GLOBAL_NS.'_options');
        $this->options = $this->default_options;
        return $this->getOptions();
    }

    /**
     * Get plugin options.
     *
     * @since 151002 Improving multisite compat.
     *
     * @param bool $intersect Discard options not present in $this->default_options
     * @param bool $refresh   Force-pull options directly from get_site_option()
     *
     * @return array Plugin options.
     *
     * @note The `$intersect` param should be `false` when this method is called by a VS upgrade routine.
     * Also `false` during inital startup or when upgrading. See: <https://git.io/viGIK>
     */
    public function getOptions($intersect = true, $refresh = false)
    {
        if (!($options = $this->options) || $refresh) {
            if (!is_array($options = get_site_option(GLOBAL_NS.'_options'))) {
                $options = []; // Force an array of options.
            }
            if (!$options && is_array($zencache_options = get_site_option('zencache_options'))) {
                $options                       = $zencache_options;
                $options['crons_setup']        = $this->default_options['crons_setup'];
                $options['latest_pro_version'] = $this->default_options['latest_pro_version'];
            }
        } // End the collection of all plugin options.

        $this->options = array_merge($this->default_options, $options);
        $this->options = $this->applyWpFilters(GLOBAL_NS.'_options', $this->options);
        $this->options = $intersect ? array_intersect_key($this->options, $this->default_options) : $this->options;
        $this->options = array_map('trim', array_map('strval', $this->options));

        $this->options['base_dir'] = trim($this->options['base_dir'], '\\/'." \t\n\r\0\x0B");
        if (!$this->options['base_dir'] || mb_strpos(basename($this->options['base_dir']), 'wp-') === 0) {
            $this->options['base_dir'] = $this->default_options['base_dir'];
        }
        return $this->options; // Plugin options.
    }

    /**
     * Update plugin options.
     *
     * @since 151002 Improving multisite compat.
     *
     * @param array $options   One or more new options.
     * @param bool  $intersect Discard options not present in $this->default_options
     *
     * @return array Plugin options after update.
     *
     * @note $intersect should be `false` when this method is called via a VS upgrade routine. See https://git.io/viGIK
     */
    public function updateOptions(array $options, $intersect = true)
    {
        if (!IS_PRO) { // Do not save Pro option keys.
            $options = array_diff_key($options, $this->pro_only_option_keys);
        }
        if (!empty($options['base_dir']) && $options['base_dir'] !== $this->options['base_dir']) {
            $this->tryErasingAllFilesDirsIn($this->wpContentBaseDirTo(''));
        }
        if (IS_PRO && !empty($options['pro_update_username']) && !empty($options['pro_update_password'])) {
            $this->dismissMainNotice('configure-pro-updater');
        }
        $this->options = array_merge($this->default_options, $this->options, $options);
        $this->options = $intersect ? array_intersect_key($this->options, $this->default_options) : $this->options;
        $this->options = array_map('trim', array_map('strval', $this->options));

        update_site_option(GLOBAL_NS.'_options', $this->options);

        return $this->getOptions($intersect);
    }
}