Attribute::__construct

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);
  }
}
doc_Drupal
2016-10-29 08:45:04
Comments
Leave a Comment

Please login to continue.