public function ConfigInspectorManager::hasSchema in Configuration Inspector 8
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.
File
- src/
ConfigInspectorManager.php, line 71
Class
- ConfigInspectorManager
- Manages plugins for configuration translation mappers.
Namespace
Drupal\config_inspectorCode
public function hasSchema($name) {
return $this->typedConfigManager
->hasConfigSchema($name);
}