You are here

public function TypedData::getParent in Drupal 10

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

Returns the parent data structure; i.e. either complex data or a list.

Return value

\Drupal\Core\TypedData\TraversableTypedDataInterface|null The parent data structure, either complex data or a list; or NULL if this is the root of the typed data tree.

Overrides TypedDataInterface::getParent

7 calls to TypedData::getParent()
ComputedFileUrl::getValue in core/modules/file/src/ComputedFileUrl.php
Gets the data value.
ComputedString::getValue in core/modules/system/tests/modules/entity_test/src/TypedData/ComputedString.php
Gets the data value.
DateTimeComputed::getValue in core/modules/datetime/src/DateTimeComputed.php
Gets the data value.
FieldItemBase::getEntity in core/lib/Drupal/Core/Field/FieldItemBase.php
Gets the entity that field belongs to.
FieldItemBase::getLangcode in core/lib/Drupal/Core/Field/FieldItemBase.php
Gets the langcode of the field values held in the object.

... See full list

File

core/lib/Drupal/Core/TypedData/TypedData.php, line 191

Class

TypedData
The abstract base class for typed data.

Namespace

Drupal\Core\TypedData

Code

public function getParent() {
  return $this->parent;
}