public Attribute::__construct($attributes = array())
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 80
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\Template
Code
public function __construct($attributes = array()) { foreach ($attributes as $name => $value) { $this->offsetSet($name, $value); } }
Please login to continue.