function TypedConfigManager::hasConfigSchema

Checks if the configuration schema with the given config name exists.

Parameters

string $name: Configuration name.

Return value

bool TRUE if configuration schema exists, FALSE otherwise.

Overrides TypedConfigManagerInterface::hasConfigSchema

File

core/lib/Drupal/Core/Config/TypedConfigManager.php, line 360

Class

TypedConfigManager
Manages config schema type plugins.

Namespace

Drupal\Core\Config

Code

public function hasConfigSchema($name) {
  // The schema system falls back on the Undefined class for unknown types.
  $definition = $this->getDefinition($name);
  return is_array($definition) && $definition['class'] != Undefined::class;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.