public DataReferenceBase::getValue()
Gets the data value.
Return value
mixed
Overrides TypedData::getValue
File
- core/lib/Drupal/Core/TypedData/DataReferenceBase.php, line 36
Class
- DataReferenceBase
- Base class for typed data references.
Namespace
Drupal\Core\TypedData
Code
1 2 3 4 5 | public function getValue() { if ( $target = $this ->getTarget()) { return $target ->getValue(); } } |
Please login to continue.