function Attribute::__construct

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

Constructs a \Drupal\Core\Template\Attribute object.

Parameters

array $attributes: An associative array of key-value pairs to be converted to attributes.

File

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

Class

Attribute
Collects, sanitizes, and renders HTML attributes.

Namespace

Drupal\Core\Template

Code

public function __construct($attributes = []) {
    foreach ($attributes as $name => $value) {
        $this->offsetSet($name, $value);
    }
}

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