You are here

public function DataReferenceBase::getValue in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/TypedData/DataReferenceBase.php \Drupal\Core\TypedData\DataReferenceBase::getValue()

Gets the data value.

Return value

mixed The data value.

Overrides TypedData::getValue

2 calls to DataReferenceBase::getValue()
EntityReference::getString in core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
Returns a string representation of the data.
EntityReference::getTargetIdentifier in core/lib/Drupal/Core/Entity/Plugin/DataType/EntityReference.php
Gets the identifier of the referenced data.

File

core/lib/Drupal/Core/TypedData/DataReferenceBase.php, line 36

Class

DataReferenceBase
Base class for typed data references.

Namespace

Drupal\Core\TypedData

Code

public function getValue() {
  if ($target = $this
    ->getTarget()) {
    return $target
      ->getValue();
  }
}