1 config.inc | public Config::isOverridden($key) |
Check if a particular config key is overridden.
Parameters
string $key: A string that maps to a key within the configuration data.
Return value
bool: TRUE if the $key is overridden. FALSE otherwise.
File
- core/
includes/ config.inc, line 614 - This is the API for configuration storage.
Class
- Config
- Defines the default configuration object.
Code
public function isOverridden($key) {
return $this->getOverride($key) !== NULL;
}