protected Mapping::getElementDefinition($key)
Gets data definition object for contained element.
int|string $key: Property name or index of the element.
\Drupal\Core\TypedData\DataDefinitionInterface
Overrides ArrayElement::getElementDefinition
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); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Schema!Mapping.php/function/Mapping::getElementDefinition/8.1.x