403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /inetpub/wwwroot/business/mpa/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /inetpub/wwwroot/business/mpa/wp-content/plugins/w3-total-cache/ConfigSettingsTabs.php
<?php
/**
 * File: ConfigSettingsTabs.php
 *
 * @since 2.8.0
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class Config_Tab_Settings
 *
 * W3 Total Cache Config settings class.
 *
 * This class is used to manage the configuration file that includes settings, options, and tabs for W3 Total Cache settings page.
 */
class Config_Tab_Settings {
	/**
	 * Retrieves all configuration settings.
	 *
	 * @since 2.8.0
	 *
	 * @return array An array containing all configuration settings.
	 */
	public static function get_configs(): array {
		$configs = include 'ConfigSettingsTabsKeys.php';
		return $configs;
	}

	/**
	 * Retrieves a specific configuration by key.
	 *
	 * @since 2.8.0
	 *
	 * @param string $w3tc_key           The key of the configuration to retrieve.
	 * @param array  $default_value The default value to return if the key does not exist. Defaults to an empty array.
	 *
	 * @return array The configuration value associated with the provided key, or the default value if the key does not exist.
	 */
	public static function get_config( string $w3tc_key, $default_value = array() ): array {
		$configs = self::get_configs();

		return isset( $configs[ $w3tc_key ] ) ? $configs[ $w3tc_key ] : $default_value;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit