✏️ 正在编辑: ConfigSettingsTabs.php
路径:
/home/ubuntu/plugins-bkp-26012025/w3-total-cache/ConfigSettingsTabs.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?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; } }
💾 保存文件
← 返回文件管理器