public function ComplexDataInterface::get

Gets a property object.

Parameters

$property_name: The name of the property to get; e.g., 'title' or 'name'.

Return value

\Drupal\Core\TypedData\TypedDataInterface The property object.

Throws

\InvalidArgumentException If an invalid property name is given.

7 methods override ComplexDataInterface::get()
Entity::get in drupal/core/lib/Drupal/Core/Entity/Entity.php
Implements \Drupal\Core\Entity\EntityInterface::get().
EntityBCDecorator::get in drupal/core/lib/Drupal/Core/Entity/EntityBCDecorator.php
Forwards the call to the decorated entity.
EntityTranslation::get in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityTranslation.php
Implements \Drupal\Core\TypedData\ComplexDataInterface::get().
EntityWrapper::get in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
Implements \Drupal\Core\TypedData\ComplexDataInterface::get().
Map::get in drupal/core/lib/Drupal/Core/TypedData/Type/Map.php
Implements \Drupal\Core\TypedData\ComplexDataInterface::get().

... See full list

File

drupal/core/lib/Drupal/Core/TypedData/ComplexDataInterface.php, line 38
Contains \Drupal\Core\TypedData\ComplexDataInterface.

Class

ComplexDataInterface
Interface for complex data; i.e. data containing named and typed properties.

Namespace

Drupal\Core\TypedData

Code

public function get($property_name);