function Sequence::getElementDefinition
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/ Sequence.php, line 25  
Class
- Sequence
 - Defines a configuration element of type Sequence.
 
Namespace
Drupal\Core\Config\SchemaCode
protected function getElementDefinition($key) {
  $value = $this->value[$key] ?? NULL;
  // @todo: Remove BC layer for sequence with hyphen in front. https://www.drupal.org/node/2444979
  $definition = [];
  if (isset($this->definition['sequence'][0])) {
    $definition = $this->definition['sequence'][0];
  }
  elseif ($this->definition['sequence']) {
    $definition = $this->definition['sequence'];
  }
  return $this->buildDataDefinition($definition, $value, $key);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.