public function Attribute::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 86 - Contains \Drupal\Core\Template\Attribute.
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\TemplateCode
public function __construct($attributes = array()) {
foreach ($attributes as $name => $value) {
$this
->offsetSet($name, $value);
}
}