function Attribute::merge

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::merge()
  2. 8.9.x core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::merge()
  3. 10 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::merge()

Merges an Attribute object into the current storage.

Parameters

\Drupal\Core\Template\Attribute $collection: The Attribute object to merge.

Return value

$this

File

core/lib/Drupal/Core/Template/Attribute.php, line 387

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function merge(Attribute $collection) {
    $merged_attributes = NestedArray::mergeDeep($this->toArray(), $collection->toArray());
    foreach ($merged_attributes as $name => $value) {
        $this->storage[$name] = $this->createAttributeValue($name, $value);
    }
    return $this;
}

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