public function FieldStorageDefinitionInterface::getPropertyDefinition in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php \Drupal\Core\Field\FieldStorageDefinitionInterface::getPropertyDefinition()
- 9 core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php \Drupal\Core\Field\FieldStorageDefinitionInterface::getPropertyDefinition()
Gets the definition of a contained property.
Parameters
string $name: The name of property.
Return value
\Drupal\Core\TypedData\DataDefinitionInterface|null The definition of the property or NULL if the property does not exist.
1 method overrides FieldStorageDefinitionInterface::getPropertyDefinition()
- BaseFieldDefinition::getPropertyDefinition in core/
lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php - Gets the definition of a contained property.
File
- core/
lib/ Drupal/ Core/ Field/ FieldStorageDefinitionInterface.php, line 172
Class
- FieldStorageDefinitionInterface
- Defines an interface for entity field storage definitions.
Namespace
Drupal\Core\FieldCode
public function getPropertyDefinition($name);