You are here

public function BaseFieldDefinition::getPropertyDefinitions in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::getPropertyDefinitions()

Gets an array of property definitions of contained properties.

Return value

\Drupal\Core\TypedData\DataDefinitionInterface[] An array of property definitions of contained properties, keyed by property name.

Overrides FieldStorageDefinitionInterface::getPropertyDefinitions

2 calls to BaseFieldDefinition::getPropertyDefinitions()
BaseFieldDefinition::getPropertyDefinition in core/lib/Drupal/Core/Field/BaseFieldDefinition.php
Gets the definition of a contained property.
BaseFieldDefinition::getPropertyNames in core/lib/Drupal/Core/Field/BaseFieldDefinition.php
Returns the names of the field's subproperties.

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 586

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function getPropertyDefinitions() {
  if (!isset($this->propertyDefinitions)) {
    $class = $this
      ->getItemDefinition()
      ->getClass();
    $this->propertyDefinitions = $class::propertyDefinitions($this);
  }
  return $this->propertyDefinitions;
}