function Map::set

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/TypedData/Plugin/DataType/Map.php \Drupal\Core\TypedData\Plugin\DataType\Map::set()
  2. 10 core/lib/Drupal/Core/TypedData/Plugin/DataType/Map.php \Drupal\Core\TypedData\Plugin\DataType\Map::set()
  3. 11.x core/lib/Drupal/Core/TypedData/Plugin/DataType/Map.php \Drupal\Core\TypedData\Plugin\DataType\Map::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.

bool $notify: (optional) Whether to notify the parent object of the change. Defaults to TRUE. If the update stems from a parent object, set it to FALSE to avoid being notified again.

Return value

$this

Overrides ComplexDataInterface::set

4 calls to Map::set()
EntityReferenceItem::setValue in core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php
Overrides \Drupal\Core\TypedData\TypedData::setValue().
FieldItemBase::__set in core/lib/Drupal/Core/Field/FieldItemBase.php
Magic method: Sets a property value.
FieldItemBase::__unset in core/lib/Drupal/Core/Field/FieldItemBase.php
Magic method: Unsets a property.
LanguageItem::setValue in core/lib/Drupal/Core/Field/Plugin/Field/FieldType/LanguageItem.php
Overrides \Drupal\Core\TypedData\TypedData::setValue().

File

core/lib/Drupal/Core/TypedData/Plugin/DataType/Map.php, line 124

Class

Map
The "map" data type.

Namespace

Drupal\Core\TypedData\Plugin\DataType

Code

public function set($property_name, $value, $notify = TRUE) {
    // Separate the writing in a protected method, such that onChange
    // implementations can make use of it.
    $this->writePropertyValue($property_name, $value);
    $this->onChange($property_name, $notify);
    return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.