-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathConfigSettingsTabs.php
47 lines (43 loc) · 1.16 KB
/
ConfigSettingsTabs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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 $key The key of the configuration to retrieve.
* @param array $default 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 $key, $default = array() ) : array {
$configs = self::get_configs();
return isset( $configs[ $key ] ) ? $configs[ $key ] : $default;
}
}