You are here

public function TypedConfigManagerInterface::buildDataDefinition in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/TypedConfigManagerInterface.php \Drupal\Core\Config\TypedConfigManagerInterface::buildDataDefinition()

Creates a new data definition object from a type definition array and actual configuration data. Since type definitions may contain variables to be replaced, we need the configuration value to create it.

Parameters

array $definition: The base type definition array, for which a data definition should be created.

$value: Optional value of the configuration element.

string $name: Optional name of the configuration element.

object $parent: Optional parent element.

Return value

\Drupal\Core\TypedData\DataDefinitionInterface A data definition for the given data type.

1 method overrides TypedConfigManagerInterface::buildDataDefinition()
TypedConfigManager::buildDataDefinition in core/lib/Drupal/Core/Config/TypedConfigManager.php
Creates a new data definition object from a type definition array and actual configuration data. Since type definitions may contain variables to be replaced, we need the configuration value to create it.

File

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

Class

TypedConfigManagerInterface
Defines an interface for managing config schema type plugins.

Namespace

Drupal\Core\Config

Code

public function buildDataDefinition(array $definition, $value, $name = NULL, $parent = NULL);