????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php /** * File: ConfigSettingsTabs.php * * @package W3TC */ namespace W3TC; /** * 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 { /** * Get the configuration settings. * * @since 2.8.0 * * @return array The configuration settings. */ public static function get_configs() : array { $configs = include 'ConfigSettingsTabsKeys.php'; return $configs; } /** * Get the configuration setting. * * @since 2.8.0 * * @param string $key The key of the configuration setting. * @param array $default The default value of the configuration setting. * * @return array The configuration setting. */ public static function get_config( string $key, $default = array() ) : array { $configs = self::get_configs(); return isset( $configs[ $key ] ) ? $configs[ $key ] : $default; } }