protected Mapping::getElementDefinition($key)
Gets data definition object for contained element.
Parameters
int|string $key: Property name or index of the element.
Return value
\Drupal\Core\TypedData\DataDefinitionInterface
Overrides ArrayElement::getElementDefinition
File
- core/lib/Drupal/Core/Config/Schema/Mapping.php, line 23
Class
- Mapping
- Defines a mapping configuration element.
Namespace
Drupal\Core\Config\Schema
Code
protected function getElementDefinition($key) { $value = isset($this->value[$key]) ? $this->value[$key] : NULL; $definition = isset($this->definition['mapping'][$key]) ? $this->definition['mapping'][$key] : array(); return $this->buildDataDefinition($definition, $value, $key); }
Please login to continue.