HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/classes/configsettings.php
<?php

class PeepSoConfigSettings
{
	public $options = NULL;
	public static $_instance = NULL;

	const OPTION_KEY = 'peepso_config';

	/*
	 * Loads wordpress options based on OPTION_KEY to $options
	 */
	private function __construct()
	{
		$this->options = get_option(self::OPTION_KEY);
	}

	/*
	 * Return a singleton instance of PeepSoConfigSettings
	 * @return object PeepSoConfigSettings
	 */
	public static function get_instance()
	{
		if (is_null(self::$_instance)) {
			self::$_instance = new self();
		}

		return self::$_instance;
	}

	/*
	 * Returns an option from PeepSoConfigSettings::$options
	 *
	 * @param string $option The key for the option under OPTION_KEY
	 * @param string $default (optional) The default value to be returned
	 *
	 * @return mixed The value if it exists, else $default
	 */
	public function get_option($option, $default = NULL)
	{
		$value =  (isset($this->options[$option]) ? $this->options[$option] : $default);

		$value = apply_filters('peepso_filter_get_option_'.$option, $value);

		return $value;
	}

	/*
	 * Sets an option to be added or updated to OPTION_KEY to be saved via update_option
	 *
	 * @param string $option The option key
	 * @param mixed $value The value to be assigned to $option
	 * @param mixed $overwrite Whether to overwrite an existing key
	 */
	public function set_option($option, $value, $overwrite = TRUE)
	{
		$options = $this->get_options();
        $options = is_array($options) ? $options : [];

		$trigger_actions = [];

		if( (!isset($options[$option])) || (isset($options[$option]) && TRUE == $overwrite) ) {

		    $old_value = NULL;

		    if(isset($options[$option])) {
                $old_value = $options[$option];
            }

		    // #4319 trigger an action for each modified option
		    if($old_value!=$value) {
                $trigger_actions[$option] = [
                    'new' => $value,
                    'old' => $old_value,
                ];
            }
			$options[$option] = $value;
		}

		if(update_option(self::OPTION_KEY, $options)) {

		    // #4319 trigger an action for each modified option
            if(count($trigger_actions)) {
                foreach($trigger_actions as $option => $values) {
                    do_action('peepso_action_config_option_change', $option, $values['new'], $values['old']);
                }
            }

            $this->options = $options;
        }

	}

	/*
	 * Returns all options under OPTION_KEY
	 */
	public function get_options()
	{
		return $this->options;
	}

	/**
	 * Removes an option from peepso_config option
	 * @param  mixed $options Can be a string indicating a single option to be removed or an array of option names
	 */
	public function remove_option($remove_options)
	{
		if (!is_array($remove_options)) {
			$remove_options = array($remove_options);
		}

		$options = $this->get_options();

		foreach ($remove_options as $remove_option) {
			unset($options[$remove_option]);
		}

		update_option(PeepSoConfigSettings::OPTION_KEY, $options);

	}
}

// EOF