public function TypedData::getValue

Implements TypedDataInterface::getValue().

Overrides TypedDataInterface::getValue

2 calls to TypedData::getValue()
Date::getString in drupal/core/lib/Drupal/Core/TypedData/Type/Date.php
Implements TypedDataInterface::getString().
TypedData::getString in drupal/core/lib/Drupal/Core/TypedData/Type/TypedData.php
Implements TypedDataInterface::getString().
7 methods override TypedData::getValue()
Binary::getValue in drupal/core/lib/Drupal/Core/TypedData/Type/Binary.php
Implements TypedDataInterface::getValue().
EntityTranslation::getValue in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityTranslation.php
Implements TypedDataInterface::getValue().
EntityWrapper::getValue in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
Implements TypedDataInterface::getValue().
Field::getValue in drupal/core/lib/Drupal/Core/Entity/Field/Type/Field.php
Implements TypedDataInterface::getValue().
FieldItemBase::getValue in drupal/core/lib/Drupal/Core/Entity/Field/FieldItemBase.php
Implements TypedDataInterface::getValue().

... See full list

File

drupal/core/lib/Drupal/Core/TypedData/Type/TypedData.php, line 56
Definition of Drupal\Core\TypedData\Type\TypedData.

Class

TypedData
The abstract base class for typed data.

Namespace

Drupal\Core\TypedData\Type

Code

public function getValue() {
  return $this->value;
}