Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php \Drupal\Core\Field\FieldStorageDefinitionInterface::getOptionsProvider()
  2. 9 core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php \Drupal\Core\Field\FieldStorageDefinitionInterface::getOptionsProvider()

Gets an options provider for the given field item property.

Parameters

string $property_name: The name of the property to get options for; e.g., 'value'.

\Drupal\Core\Entity\FieldableEntityInterface $entity: The entity for which the options should be provided.

Return value

\Drupal\Core\TypedData\OptionsProviderInterface|null An options provider, or NULL if no options are defined.

1 method overrides FieldStorageDefinitionInterface::getOptionsProvider()
BaseFieldDefinition::getOptionsProvider in core/lib/Drupal/Core/Field/BaseFieldDefinition.php
Gets an options provider for the given field item property.

File

core/lib/Drupal/Core/Field/FieldStorageDefinitionInterface.php, line 142

Class

FieldStorageDefinitionInterface
Defines an interface for entity field storage definitions.

Namespace

Drupal\Core\Field

Code

public function getOptionsProvider($property_name, FieldableEntityInterface $entity);