1.20.x config.inc public Config::isOverridden($key)

Check if a particular config key is overridden.

Parameters

$key: A string that maps to a key within the configuration data.

Return value

bool: TRUE if the $key is overridden. FALSE otherwise.

File

includes/config.inc, line 634
This is the API for configuration storage.

Class

Config
Defines the default configuration object.

Code

public function isOverridden($key) {
  return $this->getOverride($key) !== NULL;
}