function ComplexDataInterface::set
Same name in other branches
- 9 core/lib/Drupal/Core/TypedData/ComplexDataInterface.php \Drupal\Core\TypedData\ComplexDataInterface::set()
- 10 core/lib/Drupal/Core/TypedData/ComplexDataInterface.php \Drupal\Core\TypedData\ComplexDataInterface::set()
- 11.x core/lib/Drupal/Core/TypedData/ComplexDataInterface.php \Drupal\Core\TypedData\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.
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
Throws
\InvalidArgumentException If the specified property does not exist.
\Drupal\Core\TypedData\Exception\MissingDataException If the complex data structure is unset and no property can be set.
3 methods override ComplexDataInterface::set()
- ArrayElement::set in core/
lib/ Drupal/ Core/ Config/ Schema/ ArrayElement.php - Sets a property value.
- EntityAdapter::set in core/
lib/ Drupal/ Core/ Entity/ Plugin/ DataType/ EntityAdapter.php - Sets a property value.
- Map::set in core/
lib/ Drupal/ Core/ TypedData/ Plugin/ DataType/ Map.php - Sets a property value.
File
-
core/
lib/ Drupal/ Core/ TypedData/ ComplexDataInterface.php, line 66
Class
- ComplexDataInterface
- Interface for complex data; i.e. data containing named and typed properties.
Namespace
Drupal\Core\TypedDataCode
public function set($property_name, $value, $notify = TRUE);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.