| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/harmoniegolfpark.com/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
/**
* Used to show notes at blog-level when master configs are changed
*
* keys - see ConfigState comment with a list of keys with "timestamp" word
*/
class ConfigStateNote {
private $_config_state_master;
private $_config_state;
/**
* Constructor
*/
public function __construct( $config_state_master, $config_state ) {
$this->_config_state_master = $config_state_master;
$this->_config_state = $config_state;
}
/**
* Returns value
*
* @param string $key
* @param string $default
* @return mixed
*/
public function get( $key ) {
$timestamp = $this->_config_state->get_integer( $key . '.timestamp' );
$timestamp_master = $this->_config_state_master->get_integer(
$key . '.timestamp' );
if ( $timestamp > $timestamp_master )
return $this->_config_state->get_boolean( $key );
else
return $this->_config_state_master->get_boolean( $key );
}
/**
* Sets flag to true/false
*/
public function set( $key, $value ) {
$this->_config_state->set( $key, $value );
$this->_config_state->set( $key . '.timestamp', time() );
$this->_config_state->save();
}
}