You are here

public function TypedConfigManagerInterface::hasConfigSchema in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/TypedConfigManagerInterface.php \Drupal\Core\Config\TypedConfigManagerInterface::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.

1 method overrides TypedConfigManagerInterface::hasConfigSchema()
TypedConfigManager::hasConfigSchema in core/lib/Drupal/Core/Config/TypedConfigManager.php
Checks if the configuration schema with the given config name exists.

File

core/lib/Drupal/Core/Config/TypedConfigManagerInterface.php, line 57

Class

TypedConfigManagerInterface
Defines an interface for managing config schema type plugins.

Namespace

Drupal\Core\Config

Code

public function hasConfigSchema($name);