function BaseFieldDefinition::getPropertyDefinitions
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::getPropertyDefinitions()
- 10 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::getPropertyDefinitions()
- 11.x core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::getPropertyDefinitions()
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 587
Class
- BaseFieldDefinition
- A class for defining entity fields.
Namespace
Drupal\Core\FieldCode
public function getPropertyDefinitions() {
if (!isset($this->propertyDefinitions)) {
$class = $this->getItemDefinition()
->getClass();
$this->propertyDefinitions = $class::propertyDefinitions($this);
}
return $this->propertyDefinitions;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.