HEX
Server: LiteSpeed
System: Linux cde2.duelhost.dk 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
User: dtptviut (1121)
PHP: 8.0.30
Disabled: exec,system,passthru,shell_exec,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/dtptviut/domains/teleweb.dk/public_html/wp-content/plugins/w3-total-cache/ConfigStateNote.php
<?php
/**
 * File: ConfigStateNote.php
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class ConfigStateNote
 *
 * Used to show notes at blog-level when master configs are changed
 *
 * keys - see ConfigState comment with a list of keys with "timestamp" word
 *
 * phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
 */
class ConfigStateNote {
	/**
	 * Config state master
	 *
	 * @var array
	 */
	private $_config_state_master;

	/**
	 * Config state
	 *
	 * @var array
	 */
	private $_config_state;

	/**
	 * Initializes the ConfigStateNote instance with master and state configurations.
	 *
	 * @param object $config_state_master The master configuration state object.
	 * @param object $w3tc_config_state        The configuration state object.
	 *
	 * @return void
	 */
	public function __construct( $config_state_master, $w3tc_config_state ) {
		$this->_config_state_master = $config_state_master;
		$this->_config_state        = $w3tc_config_state;
	}

	/**
	 * Retrieves a configuration value for a given key, considering timestamps.
	 *
	 * @param string $w3tc_key The key for which to retrieve the configuration value.
	 *
	 * @return bool The boolean value of the configuration for the given key.
	 */
	public function get( $w3tc_key ) {
		$timestamp        = $this->_config_state->get_integer( $w3tc_key . '.timestamp' );
		$timestamp_master = $this->_config_state_master->get_integer( $w3tc_key . '.timestamp' );

		if ( $timestamp > $timestamp_master ) {
			return $this->_config_state->get_boolean( $w3tc_key );
		} else {
			return $this->_config_state_master->get_boolean( $w3tc_key );
		}
	}

	/**
	 * Sets a configuration value and updates its timestamp.
	 *
	 * @param string $w3tc_key   The key for which to set the configuration value.
	 * @param mixed  $w3tc_value The value to set for the given key.
	 *
	 * @return void
	 */
	public function set( $w3tc_key, $w3tc_value ) {
		$this->_config_state->set( $w3tc_key, $w3tc_value );
		$this->_config_state->set( $w3tc_key . '.timestamp', time() );
		$this->_config_state->save();
	}
}