You are here

public function TypedConfigManager::hasConfigSchema in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/TypedConfigManager.php \Drupal\Core\Config\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;
}