public function ComplexDataInterface::set

Sets a property value.

Parameters

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

$value: The value to set, or NULL to unset the property.

Return value

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

Throws

\InvalidArgumentException If the specified property does not exist.

5 methods override ComplexDataInterface::set()
Entity::set in drupal/core/lib/Drupal/Core/Entity/Entity.php
Implements ComplexDataInterface::set().
EntityTranslation::set in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityTranslation.php
Implements ComplexDataInterface::set().
EntityWrapper::set in drupal/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
Implements ComplexDataInterface::set().
FieldItemBase::set in drupal/core/lib/Drupal/Core/Entity/Field/FieldItemBase.php
Implements ComplexDataInterface::set().
ViewUI::set in drupal/core/modules/views/views_ui/lib/Drupal/views_ui/ViewUI.php
Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::set().

File

drupal/core/lib/Drupal/Core/TypedData/ComplexDataInterface.php, line 51
Definition of 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 set($property_name, $value);