public function ArrayElement::set in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Config/Schema/ArrayElement.php \Drupal\Core\Config\Schema\ArrayElement::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.
Overrides ComplexDataInterface::set
File
- core/
lib/ Drupal/ Core/ Config/ Schema/ ArrayElement.php, line 169
Class
- ArrayElement
- Defines a generic configuration element that contains multiple properties.
Namespace
Drupal\Core\Config\SchemaCode
public function set($property_name, $value, $notify = TRUE) {
$this->value[$property_name] = $value;
// Config schema elements do not make use of notifications. Thus, we skip
// notifying parents.
return $this;
}